diff --git a/HISTORY.rst b/HISTORY.rst index e7deb64..ce021d4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ History ======= +0.1.3 +----- + +- Added poetry tooling support. 0.1.2 ----- diff --git a/neon_api/__version__.py b/neon_api/__version__.py index 485f44a..ae73625 100644 --- a/neon_api/__version__.py +++ b/neon_api/__version__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.1.3" diff --git a/pyproject.toml b/pyproject.toml index 43d2910..348ab66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "neon-api" -version = "0.1.2" +version = "0.1.3" description = "An API Client for the Neon API." authors = ["Kenneth Reitz "] license = "Apache-2.0" diff --git a/setup.py b/setup.py index 0840bb5..2dd0aaa 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ URL = "https://github.com/kennethreitz/neon-api-python" EMAIL = "me@kennethreitz.org" AUTHOR = "Kenneth Reitz" REQUIRES_PYTHON = ">=3.9.0" -VERSION = "0.1.2" +VERSION = "0.1.3" # What packages are required for this module to be executed? REQUIRED = ["requests", "pydantic >= 2.0.0"]