From ae78416cf54321ab07353c195690b7477ff52997 Mon Sep 17 00:00:00 2001 From: Anna Shamray Date: Wed, 26 Feb 2025 18:59:22 +0100 Subject: [PATCH] :bookmark: release 3.1.0 --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 20 ++++++++++++++++++++ README.NL.rst | 2 +- README.rst | 2 +- docs/api/index.rst | 8 ++++---- package-lock.json | 4 ++-- package.json | 2 +- publiccode.yaml | 2 +- src/objects/__init__.py | 2 +- 9 files changed, 32 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7026798..a9fe3938 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 3.0.0 +current_version = 3.1.0 [bumpversion:file:README.rst] search = :Version: {current_version} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c76ab37..c9412d2b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,26 @@ Change history ============== +3.1.0 (2025-02-26) +------------------ + +**Bugfixes and QOL** + +* improved performance of the permission page in the Admin [#464] :zap: +* disabled admin nav sidebar [open-api-framework/#79] + +**Project maintenance** + +* bumped python dependencies: open-api-framework to 0.9.3, commonground-api-common to 2.5.0, django to 4.2.19, cryptography to 44.0.1 +* added bump-my-version to dev dependencies [#529] +* added workflow to CI to auto-update open-api-framework [#145] +* updated quick-start workflow to test docker-compose.yml [#509, open-api-framework/#104] +* remove unused celery worker command line args [maykinmedia/charts#165] + +**Documentation** + +* updated documentation for ``django-setup-configuration`` steps with YAML example directive [#521] + 3.0.0 (2025-01-22) ------------------ diff --git a/README.NL.rst b/README.NL.rst index 111c49eb..c7bc5933 100644 --- a/README.NL.rst +++ b/README.NL.rst @@ -2,7 +2,7 @@ Objecten API ============ -:Version: 3.0.0 +:Version: 3.1.0 :Source: https://github.com/maykinmedia/objecttypes-api :Keywords: objecten, assets, zaakobjecten diff --git a/README.rst b/README.rst index f6341404..f4b5adf9 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Objects API =========== -:Version: 3.0.0 +:Version: 3.1.0 :Source: https://github.com/maykinmedia/objects-api :Keywords: objects, assets, zaakobjecten diff --git a/docs/api/index.rst b/docs/api/index.rst index 12694fae..479a207e 100644 --- a/docs/api/index.rst +++ b/docs/api/index.rst @@ -11,12 +11,12 @@ as of March 1, 2022`_. Their specifications can be found below. API Specification version(s) ====================== ========================================== `Objecttypes API`_ 2.2.2 ( - `Redoc `__, - `Swagger `__ + `Redoc `__, + `Swagger `__ ) `Objects API`_ 2.4.3 ( - `Redoc `__, - `Swagger `__ + `Redoc `__, + `Swagger `__ ) ====================== ========================================== diff --git a/package-lock.json b/package-lock.json index 3236112f..ec35b420 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "objects", - "version": "3.0.0", + "version": "3.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "objects", - "version": "3.0.0", + "version": "3.1.0", "license": "UNLICENSED", "dependencies": { "microscope-sass": "latest", diff --git a/package.json b/package.json index afd647db..3bc83df4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "objects", - "version": "3.0.0", + "version": "3.1.0", "description": "objects project", "main": "src/objects/static/bundles/objects-js.js", "directories": { diff --git a/publiccode.yaml b/publiccode.yaml index 03898258..15e860fb 100644 --- a/publiccode.yaml +++ b/publiccode.yaml @@ -7,7 +7,7 @@ publiccodeYmlVersion: '0.2' name: Objects API url: 'http://github.com/maykinmedia/objects-api.git' softwareType: standalone/backend -softwareVersion: 3.0.0 +softwareVersion: 3.1.0 releaseDate: '2025-01-22' logo: 'https://github.com/maykinmedia/objects-api/blob/master/docs/logo.png' platforms: diff --git a/src/objects/__init__.py b/src/objects/__init__.py index 9a611bc0..24bbf383 100644 --- a/src/objects/__init__.py +++ b/src/objects/__init__.py @@ -1,6 +1,6 @@ from .celery import app as celery_app __all__ = ("celery_app",) -__version__ = "3.0.0" +__version__ = "3.1.0" __author__ = "Maykin Media" __homepage__ = "https://github.com/maykinmedia/objects-api"