diff --git a/CHANGELOG.md b/CHANGELOG.md index 00b6267..4949a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.1.1 (2024-02-28) + +### Fix + +* fix: bad exception management (#10) ([`f5cf7b9`](https://github.com/crabisoft/pdbstore/commit/f5cf7b9efe2ebd99d285c5b1f7f7962469c94f50)) + ## v0.1.0 (2023-11-24) ### Documentation diff --git a/pdbstore/_version.py b/pdbstore/_version.py index fd1a4fa..557e401 100644 --- a/pdbstore/_version.py +++ b/pdbstore/_version.py @@ -3,4 +3,4 @@ __email__ = "jrp@crabisoft.fr" __license__ = "MIT" __title__ = "pdbstore" -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index 50e9518..4b6d124 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pdbstore" -version = "0.1.0" +version = "0.1.1" description="manage PDB and PE files through a local symbols store" requires-python = ">=3.8" license = { text = "MIT" }