From 40bf077484093e474bcd888694361165b14a53bd Mon Sep 17 00:00:00 2001 From: Ian Barnard Date: Mon, 9 Oct 2023 17:28:56 +0100 Subject: [PATCH] 0.23.0 --- .bumpversion.cfg | 2 +- README.md | 6 +++--- elmclient/__meta__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 30a101e..f451c13 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.22.0 +current_version = 0.23.0 commit = True tag = True diff --git a/README.md b/README.md index 29c1547..38f0ace 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,15 @@ SPDX-License-Identifier: MIT - version="0.22.0" + version="0.23.0" What's New? =========== -0.22.0 16-Aug-2023 +0.23.0 16-Aug-2023 * tested with Python 3.11.4 - worked OOTB. Now developing using 3.11.4 - won't be back-tested with older Pythons but should work back to 3.9 at least. -0.22.0 4-May-2023 +0.23.0 4-May-2023 * Deprecated RM load_folders() - use find_folder() instead. * Added RM create_folder() - this doesn't require doing a forced reload of all folders, because it inserts the new folder into the internal info about folders * Added example dn_simple_createfolderpath.py - allows exercising the create_folders() function diff --git a/elmclient/__meta__.py b/elmclient/__meta__.py index db3bc13..dea0442 100644 --- a/elmclient/__meta__.py +++ b/elmclient/__meta__.py @@ -9,7 +9,7 @@ app = 'elmoslcquery' description = 'Commandline OSLC query for ELM' -version = '0.22.0' +version = '0.23.0' license = 'MIT' author_name = 'Ian Barnard' author_mail = 'ian.barnard@uk.ibm.com' diff --git a/setup.py b/setup.py index 36039ef..f8bb938 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # This call to setup() does all the work setup( name="elmclient", - version="0.22.0", + version="0.23.0", description="Python client for ELM with examples of OSLC Query, ReqIF import/export, Reportable REST, and more", long_description=README, long_description_content_type="text/markdown",