diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 19e9d312..626eeca4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.1.0 +current_version = 2.1.1 [bumpversion:file:README.rst] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d3c55c15..42df98b4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ Change history ============== +2.1.1 (2024-02-06) +------------------ + +**Bugfixes and QOL** + +* added ``ENVIRONMENT`` environment variable (maykinmedia/objects-api#310) +* updated python to 3.10 (#94) +* bumped Django to 3.2 (#88) +* removed hijack library (#88) +* replaced vng-api-common with commonground-api-common library (#88) +* updated base for docker image from Debian 10 to Debian 12 (#94) +* bumped python libraries mozilla-django-oidc, mozilla-django-oidc-db (#94) +* fixed name of the folder in INSTALL.rst (#86) + 2.1.0 (2022-06-24) ------------------ diff --git a/README.NL.rst b/README.NL.rst index e55680fd..1e39ef09 100644 --- a/README.NL.rst +++ b/README.NL.rst @@ -2,7 +2,7 @@ Objecttypen API =============== -:Version: 2.1.0 +:Version: 2.1.1 :Source: https://github.com/maykinmedia/objecttypes-api :Keywords: objecten, assets, zaakobjecten @@ -36,10 +36,10 @@ Versie Release datum API specificatie ============== ============== ============================= latest n/a `ReDoc `_, `Swagger `_, - (`verschillen `_) -2.1.0 2022-06-24 `ReDoc `_, - `Swagger `_ - (`verschillen `_) + (`verschillen `_) +2.1.1 2022-06-24 `ReDoc `_, + `Swagger `_ + (`verschillen `_) 2.0.0 2021-10-04 `ReDoc `_, `Swagger `_ (`verschillen `_) diff --git a/README.rst b/README.rst index a5b1e191..f0b3146f 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Objecttypes API =============== -:Version: 2.1.0 +:Version: 2.1.1 :Source: https://github.com/maykinmedia/objecttypes-api :Keywords: objects, assets, zaakobjecten @@ -35,10 +35,10 @@ Version Release date API specification ============== ============== ============================= latest n/a `ReDoc `_, `Swagger `_, - (`diff `_) -2.1.0 2022-06-24 `ReDoc `_, - `Swagger `_ - (`diff `_) + (`diff `_) +2.1.1 2022-06-24 `ReDoc `_, + `Swagger `_ + (`diff `_) 2.0.0 2021-10-04 `ReDoc `_, `Swagger `_ (`diff `_) diff --git a/package-lock.json b/package-lock.json index e834d97f..c3a9d7f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "objecttypes", - "version": "2.1.0", + "version": "2.1.1", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 55cb5325..5418ca71 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "objecttypes", - "version": "2.1.0", + "version": "2.1.1", "description": "objecttypes project", "main": "src/objecttypes/static/bundles/objecttypes-js.js", "directories": { diff --git a/publiccode.yaml b/publiccode.yaml index 4cc50c13..1d5bfac8 100644 --- a/publiccode.yaml +++ b/publiccode.yaml @@ -7,7 +7,7 @@ publiccodeYmlVersion: '0.2' name: Objecttypes API url: 'http://github.com/maykinmedia/objecttypes-api.git' softwareType: standalone/backend -softwareVersion: 2.1.0 +softwareVersion: 2.1.1 releaseDate: '2021-01-13' logo: 'https://github.com/maykinmedia/objects-api/blob/master/docs/logo.png' platforms: diff --git a/src/objecttypes/api/v2/openapi.yaml b/src/objecttypes/api/v2/openapi.yaml index eb5f5225..2bf322a9 100644 --- a/src/objecttypes/api/v2/openapi.yaml +++ b/src/objecttypes/api/v2/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: Objecttypes API - version: 2.1.0 (v2) + version: 2.1.1 (v2) description: |+ An API to manage Object types. diff --git a/src/objecttypes/conf/api.py b/src/objecttypes/conf/api.py index 3cca0f94..85747cad 100644 --- a/src/objecttypes/conf/api.py +++ b/src/objecttypes/conf/api.py @@ -1,7 +1,7 @@ from vng_api_common.conf.api import * # noqa - imports white-listed -API_VERSION = "2.1.0" -VERSIONS = {"v1": "1.2.0", "v2": "2.1.0"} +API_VERSION = "2.1.1" +VERSIONS = {"v1": "1.2.0", "v2": "2.1.1"} # api settings