Skip to content

Commit

Permalink
📝release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Coperh committed Oct 1, 2024
1 parent 170b29e commit f1f971c
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 0.1.0
current_version = 0.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre>[a-z]+)\.(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{pre}.{build}
Expand Down
29 changes: 26 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ Change history
0.2.0
=====

*?? ??, 2024*
*October 01, 2024*

**New features**

* updated open-api-framework to 0.8.0, which includes adding CSRF, CSP and HSTS settings (#438).
* 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 <https://objects-and-objecttypes-api.readthedocs.io/en/latest/installation/config.html>`_
* add import export to item admin
* add OIDC login

.. warning::

Expand All @@ -27,7 +29,28 @@ 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**

* fixed npm vulnerabilities
* add missing pyquery dependency
* fix help-text icon layout in the admin

**Documentation**

* document env vars

**Project maintenance**

* update pip in stage 3 of dockerfile
* moved setuptools installation in dockerfile
* update open-api-framework
* update setup tools
* upgrade django version
* upgrade webob
* add keycloak docker
* Refactor base settings

0.1.0
=====
Expand Down
2 changes: 1 addition & 1 deletion README.EN.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Referentielijsten API
=====================

:Version: 0.1.0
:Version: 0.2.0
:Source: https://github.com/maykinmedia/referentielijsten
:Keywords: referentielijsten, stamtabellen

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Referentielijsten API
=====================

:Version: 0.1.0
:Version: 0.2.0
:Source: https://github.com/maykinmedia/referentielijsten
:Keywords: referentielijsten, stamtabellen

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/referentielijsten/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit f1f971c

Please sign in to comment.