diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fe0b7e4..5713b5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ Changelog ========= +0.1.2 (2023-08-12) +------------------ + +- Added the |DoesNotExist|_ exception. +- HTTP requests are now sent with User-Agent specifying the SDK version. + +.. |DoesNotExist| replace:: ``DoesNotExist`` +.. _DoesNotExist: https://docs.kabelwerk.io/python/exceptions.html#kabelwerk.exceptions.DoesNotExist + 0.1.1 (2023-07-23) ------------------ diff --git a/docs/conf.py b/docs/conf.py index b9e8d15..7005c66 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,8 +17,8 @@ copyright = '2023, Kabelwerk' author = 'Kabelwerk' -release = '0.1.1' -version = '0.1.1' +release = '0.1.2' +version = '0.1.2' # -- General configuration --------------------------------------------------- diff --git a/kabelwerk/__init__.py b/kabelwerk/__init__.py index 9741c06..f75c5eb 100644 --- a/kabelwerk/__init__.py +++ b/kabelwerk/__init__.py @@ -1,4 +1,4 @@ from .exceptions import * -__version__ = '0.1.1' +__version__ = '0.1.2' diff --git a/pyproject.toml b/pyproject.toml index f911706..fe51ee1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ authors = [ license = {file = "LICENSE"} classifiers = [ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3",