Skip to content

Commit

Permalink
Merge branch 'main' into feature/#28-Implement-__format__-for-a-more-…
Browse files Browse the repository at this point in the history
…fine-grained-output-of-the-error
  • Loading branch information
Nicoretti authored Nov 18, 2024
2 parents eaae59a + f6275f4 commit 87fb71f
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 62 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
poetry.lock linguist-generated=true
setup.py linguist-generated=true
error-codes.json linguist-generated=true
1 change: 0 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:

cd-job:
name: Continuous Delivery
needs: [ ci-job ]
uses: ./.github/workflows/build-and-publish.yml
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
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)
* [0.5.0](changes_0.5.0.md)
* [0.4.0](changes_0.4.0.md)
* [0.3.0](changes_0.3.0.md)
* [0.2.0](changes_0.2.0.md)
Expand All @@ -12,6 +13,7 @@
hidden:
---
unreleased
changes_0.5.0
changes_0.4.0
changes_0.3.0
changes_0.2.0
Expand Down
22 changes: 22 additions & 0 deletions doc/changes/changes_0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 0.5.0 - 2024-10-25

## Fixes

* [#27](https://github.com/exasol/error-reporting-python/issues/27) Make sure creating an error does not raise an exception.

## Feature

* #25: Add support for named parameters.

## Refactorings

* #33: Updated to Python 3.10

## Documentation

* Reworked project documentation

## Internal

* Relocked Dependencies
* Added github issue templates
23 changes: 0 additions & 23 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,24 +1 @@
# Unreleased


## Fixes

* [#27](https://github.com/exasol/error-reporting-python/issues/27) Make sure creating an error does not raise an exception.

## Feature

* #25: Add support for named parameters.

## Refactorings

* #33: Updated to Python 3.10

## Documentation

* Reworked project documentation

## Internal

* Relocked Dependencies
* Added github issue templates

37 changes: 1 addition & 36 deletions error-codes.json

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

2 changes: 1 addition & 1 deletion exasol/error/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# 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 = 4
MINOR = 5
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ packages = [
{include = "exasol"},
{include = "exasol_error_reporting_python"}
]
version = "0.4.0"
version = "0.5.0"
description = "Exasol Python Error Reporting"
license = "MIT"

Expand Down

0 comments on commit 87fb71f

Please sign in to comment.