From 69bf1b0178fd803ddaae8a1788ea63a4ceb5f78e Mon Sep 17 00:00:00 2001 From: pavelsof Date: Sun, 23 Jul 2023 22:57:44 +0200 Subject: [PATCH] Released v0.1.1. --- CHANGELOG.rst | 6 ++++++ docs/conf.py | 4 +++- kabelwerk/__init__.py | 2 +- pyproject.toml | 3 ++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d9be12f..fe0b7e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Changelog ========= +0.1.1 (2023-07-23) +------------------ + +- First working version. + + 0.1.0 (2023-07-21) ----------- diff --git a/docs/conf.py b/docs/conf.py index 93fd539..b9e8d15 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,9 @@ project = "Kabelwerk's SDK for Python" copyright = '2023, Kabelwerk' author = 'Kabelwerk' -release = '0.1.0' + +release = '0.1.1' +version = '0.1.1' # -- General configuration --------------------------------------------------- diff --git a/kabelwerk/__init__.py b/kabelwerk/__init__.py index edc510b..9741c06 100644 --- a/kabelwerk/__init__.py +++ b/kabelwerk/__init__.py @@ -1,4 +1,4 @@ from .exceptions import * -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/pyproject.toml b/pyproject.toml index c60afc6..f911706 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ authors = [ license = {file = "LICENSE"} classifiers = [ - "Development Status :: 1 - Planning", + "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", @@ -43,6 +43,7 @@ dev = [ [project.urls] Home = "https://kabelwerk.io" Changelog = "https://github.com/kabelwerk/sdk-python/blob/master/CHANGELOG.rst" +Documentation = "https://docs.kabelwerk.io/python/" Source = "https://github.com/kabelwerk/sdk-python" Tracker = "https://github.com/kabelwerk/sdk-python/issues"