diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f081aac7..2348a50a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.0.0 +current_version = 2.0.1 [bumpversion:file:setup.cfg] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d64c1c5a..1bf98bb3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,10 @@ Change history ============== +2.0.1 (2024-11-22) + +* move zgw-consumers-oas to ``testutils`` instead of ``tests``, to avoid pulling in irrelevant test deps in other projects + 2.0.0 (2024-11-22) ------------------ diff --git a/package-lock.json b/package-lock.json index 3ddf2b9e..64bd0a00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vng-api-common", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vng-api-common", - "version": "2.0.0", + "version": "2.0.1", "license": "EUPL-1.2", "dependencies": { "swagger2openapi": "^7.0.8" diff --git a/package.json b/package.json index fcba644f..41bdc32c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vng-api-common", - "version": "2.0.0", + "version": "2.0.1", "description": "NodeJS build tooling for vng-api-common", "main": "index.js", "directories": { diff --git a/setup.cfg b/setup.cfg index 7c405440..79d3e105 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ # see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files [metadata] name = commonground-api-common -version = 2.0.0 +version = 2.0.1 description = Commonground API tooling long_description = file: README.rst url = https://github.com/maykinmedia/commonground-api-common @@ -46,7 +46,7 @@ install_requires = notifications-api-common>=0.3.0 zgw-consumers>=0.35.1 oyaml - PyJWT>=2.0.0 + PyJWT>=2.0.1 requests requests-mock coreapi diff --git a/vng_api_common/__init__.py b/vng_api_common/__init__.py index 8c0d5d5b..159d48b8 100644 --- a/vng_api_common/__init__.py +++ b/vng_api_common/__init__.py @@ -1 +1 @@ -__version__ = "2.0.0" +__version__ = "2.0.1"