From 9f3c161ff2d7cfe8e1711817b6ed942acd7be625 Mon Sep 17 00:00:00 2001 From: Ian Barnard Date: Thu, 5 Oct 2023 09:27:51 +0100 Subject: [PATCH] build 0.22.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 c54c702..30a101e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.21.0 +current_version = 0.22.0 commit = True tag = True diff --git a/README.md b/README.md index e519652..29c1547 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,15 @@ SPDX-License-Identifier: MIT - version="0.21.0" + version="0.22.0" What's New? =========== -0.21.0 16-Aug-2023 +0.22.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.21.0 4-May-2023 +0.22.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 79a514d..db3bc13 100644 --- a/elmclient/__meta__.py +++ b/elmclient/__meta__.py @@ -9,7 +9,7 @@ app = 'elmoslcquery' description = 'Commandline OSLC query for ELM' -version = '0.21.0' +version = '0.22.0' license = 'MIT' author_name = 'Ian Barnard' author_mail = 'ian.barnard@uk.ibm.com' diff --git a/setup.py b/setup.py index 4e9f71e..36039ef 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # This call to setup() does all the work setup( name="elmclient", - version="0.21.0", + version="0.22.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",