Skip to content

Commit 33a0806

Browse files
authored
Release/prepare 1.0.0 (#66)
* Prepare release 1.0.0 * Removed legacy file py.typed
1 parent 1cf674d commit 33a0806

File tree

7 files changed

+26
-23
lines changed

7 files changed

+26
-23
lines changed

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* [unreleased](unreleased.md)
4+
* [1.0.0](changes_1.0.0.md)
45
* [0.5.0](changes_0.5.0.md)
56
* [0.4.0](changes_0.4.0.md)
67
* [0.3.0](changes_0.3.0.md)
@@ -13,6 +14,7 @@
1314
hidden:
1415
---
1516
unreleased
17+
changes_1.0.0
1618
changes_0.5.0
1719
changes_0.4.0
1820
changes_0.3.0

doc/changes/changes_1.0.0.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# 1.0.0 - 2025-03-11
2+
3+
## Internal
4+
5+
* Relocked Dependencies
6+
* Update toolbox workflows
7+
* Added security.md
8+
9+
## Added
10+
11+
* Added support for finegrained error output control
12+
13+
## Refactoring
14+
15+
- #52: Enabled Type Checking for the Project
16+
- #63: Removed legacy module
17+
18+
## Bugs
19+
20+
- #61: Fixed parsing of parameter in AST

doc/changes/unreleased.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1 @@
11
# Unreleased
2-
3-
## Internal
4-
5-
* Relocked Dependencies
6-
* Update toolbox workflows
7-
* Added security.md
8-
9-
## Added
10-
11-
* Added support for finegrained error output control
12-
13-
## Refactoring
14-
15-
- #52: Enabled Type Checking for the Project
16-
- #63: Removed legacy module
17-
18-
## Bugs
19-
20-
- #61: Fixed parsing of parameter in AST

error-codes.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exasol/error/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# * or "poetry run version-check <path/version.py> --fix"
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`.
7-
MAJOR = 0
8-
MINOR = 5
7+
MAJOR = 1
8+
MINOR = 0
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
1111
__version__ = VERSION

exasol_error_reporting_python/py.typed

Whitespace-only changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "exasol-error-reporting"
33
packages = [
44
{include = "exasol"}
55
]
6-
version = "0.5.0"
6+
version = "1.0.0"
77
description = "Exasol Python Error Reporting"
88
license = "MIT"
99

0 commit comments

Comments
 (0)