Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

* [unreleased](unreleased.md)
* [1.0.0](changes_1.0.0.md)
* [0.5.0](changes_0.5.0.md)
* [0.4.0](changes_0.4.0.md)
* [0.3.0](changes_0.3.0.md)
Expand All @@ -13,6 +14,7 @@
hidden:
---
unreleased
changes_1.0.0
changes_0.5.0
changes_0.4.0
changes_0.3.0
Expand Down
20 changes: 20 additions & 0 deletions doc/changes/changes_1.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 1.0.0 - 2025-03-11

## Internal

* Relocked Dependencies
* Update toolbox workflows
* Added security.md

## Added

* Added support for finegrained error output control

## Refactoring

- #52: Enabled Type Checking for the Project
- #63: Removed legacy module

## Bugs

- #61: Fixed parsing of parameter in AST
19 changes: 0 additions & 19 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,20 +1 @@
# Unreleased

## Internal

* Relocked Dependencies
* Update toolbox workflows
* Added security.md

## Added

* Added support for finegrained error output control

## Refactoring

- #52: Enabled Type Checking for the Project
- #63: Removed legacy module

## Bugs

- #61: Fixed parsing of parameter in AST
2 changes: 1 addition & 1 deletion error-codes.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions exasol/error/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# * or "poetry run version-check <path/version.py> --fix"
# Do not edit this file manually!
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
MAJOR = 0
MINOR = 5
MAJOR = 1
MINOR = 0
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
__version__ = VERSION
Empty file.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "exasol-error-reporting"
packages = [
{include = "exasol"}
]
version = "0.5.0"
version = "1.0.0"
description = "Exasol Python Error Reporting"
license = "MIT"

Expand Down