From f61bb6fd69a6c224365b5d492eaa70c2360b7eaf Mon Sep 17 00:00:00 2001 From: Conor Holden Date: Tue, 1 Oct 2024 16:11:53 +0200 Subject: [PATCH] :bookmark:release 0.2.0 --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 31 +++++++++++++++++++++++++++---- README.EN.rst | 2 +- README.rst | 2 +- package.json | 2 +- src/referentielijsten/__init__.py | 2 +- 6 files changed, 32 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a370f9e..a5a6028 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 0.1.0 +current_version = 0.2.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P
[a-z]+)\.(?P\d+))?
 serialize = 
 	{major}.{minor}.{patch}-{pre}.{build}
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 88a485e..f5bee98 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,12 +5,14 @@ Change history
 0.2.0
 =====
 
-*?? ??, 2024*
+*October 04, 2024*
 
 **New features**
 
-* updated open-api-framework to 0.8.0, which includes adding CSRF, CSP and HSTS settings (#438).
+* [#31] Updated open-api-framework to 0.8.1, which includes adding CSRF, CSP and HSTS settings (#438).
   All new environment variables are added to the `documentation `_
+* [#15] Add import export to item admin
+* [#7] Add OIDC login
 
 .. warning::
 
@@ -18,7 +20,6 @@ Change history
     before upgrading to this version of open-api-framework, your entire application is served
     over HTTPS, otherwise this setting can break parts of your application (see https://docs.djangoproject.com/en/4.2/ref/middleware/#http-strict-transport-security)
 
-
 .. warning::
 
    Deployment tooling updates required - additional containers needed.
@@ -27,7 +28,29 @@ Change history
 
 .. warning::
 
-   Two factor authentication was added (by default it is enabled, to disable it, set the ``DISABLE_2FA`` envvar to ``True``)
+   Two factor authentication was added (by default it is enabled, to disable it, set the ``DISABLE_2FA`` envvar to ``True``
+
+**Bugfixes and QOL**
+
+* [#29] Fixed npm vulnerabilities
+* [#21] Add missing pyquery dependency
+* [#18] Fix help-text icon layout in the admin
+
+**Documentation**
+
+* [#19] Document env vars
+
+**Project maintenance**
+
+* [#28] Update pip in stage 3 of dockerfile
+* [#27] Moved setuptools installation in dockerfile
+* [#26] Update open-api-framework
+* [#25] Update setup tools
+* [#24] Upgrade webob
+* [#23] Upgrade django version
+* [#22] Add keycloak docker
+* [#20] Update dependencies and fixed broken oidc tests
+* [#17] Refactor base settings
 
 0.1.0
 =====
diff --git a/README.EN.rst b/README.EN.rst
index 5249556..08140cc 100644
--- a/README.EN.rst
+++ b/README.EN.rst
@@ -2,7 +2,7 @@
 Referentielijsten API
 =====================
 
-:Version: 0.1.0
+:Version: 0.2.0
 :Source: https://github.com/maykinmedia/referentielijsten
 :Keywords: referentielijsten, stamtabellen
 
diff --git a/README.rst b/README.rst
index 5799f4d..e7d1ede 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
 Referentielijsten API
 =====================
 
-:Version: 0.1.0
+:Version: 0.2.0
 :Source: https://github.com/maykinmedia/referentielijsten
 :Keywords: referentielijsten, stamtabellen
 
diff --git a/package.json b/package.json
index 7f3309a..7af774a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "referentielijsten",
-  "version": "0.1.0",
+  "version": "0.2.0",
   "description": "Referentielijsten API project",
   "main": "src/static/referentielijsten/js/referentielijsten.js",
   "directories": {
diff --git a/src/referentielijsten/__init__.py b/src/referentielijsten/__init__.py
index 18c940d..a88d88b 100644
--- a/src/referentielijsten/__init__.py
+++ b/src/referentielijsten/__init__.py
@@ -1,6 +1,6 @@
 # from .celery import app as celery_app
 
 # __all__ = ("celery_app",)
-__version__ = "0.1.0"
+__version__ = "0.2.0"
 __author__ = "Maykin"
 __homepage__ = "https://github.com/maykinmedia/referentielijsten"