Skip to content

Commit 4c118ea

Browse files
authored
Prepare release 0.5.0 (#48)
1 parent acafbb7 commit 4c118ea

File tree

7 files changed

+28
-61
lines changed

7 files changed

+28
-61
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
poetry.lock linguist-generated=true
22
setup.py linguist-generated=true
3+
error-codes.json linguist-generated=true

doc/changes/changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* [unreleased](unreleased.md)
4+
* [0.5.0](changes_0.5.0.md)
45
* [0.4.0](changes_0.4.0.md)
56
* [0.3.0](changes_0.3.0.md)
67
* [0.2.0](changes_0.2.0.md)
@@ -12,6 +13,7 @@
1213
hidden:
1314
---
1415
unreleased
16+
changes_0.5.0
1517
changes_0.4.0
1618
changes_0.3.0
1719
changes_0.2.0

doc/changes/changes_0.5.0.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# 0.5.0 - 2024-10-25
2+
3+
## Fixes
4+
5+
* [#27](https://github.com/exasol/error-reporting-python/issues/27) Make sure creating an error does not raise an exception.
6+
7+
## Feature
8+
9+
* #25: Add support for named parameters.
10+
11+
## Refactorings
12+
13+
* #33: Updated to Python 3.10
14+
15+
## Documentation
16+
17+
* Reworked project documentation
18+
19+
## Internal
20+
21+
* Relocked Dependencies
22+
* Added github issue templates

doc/changes/unreleased.md

-23
Original file line numberDiff line numberDiff line change
@@ -1,24 +1 @@
11
# Unreleased
2-
3-
4-
## Fixes
5-
6-
* [#27](https://github.com/exasol/error-reporting-python/issues/27) Make sure creating an error does not raise an exception.
7-
8-
## Feature
9-
10-
* #25: Add support for named parameters.
11-
12-
## Refactorings
13-
14-
* #33: Updated to Python 3.10
15-
16-
## Documentation
17-
18-
* Reworked project documentation
19-
20-
## Internal
21-
22-
* Relocked Dependencies
23-
* Added github issue templates
24-

error-codes.json

+1-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exasol/error/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 4
8+
MINOR = 5
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ packages = [
44
{include = "exasol"},
55
{include = "exasol_error_reporting_python"}
66
]
7-
version = "0.4.0"
7+
version = "0.5.0"
88
description = "Exasol Python Error Reporting"
99
license = "MIT"
1010

0 commit comments

Comments
 (0)