Skip to content

Commit 343e18b

Browse files
committed
🔖 Release 2.1.0
1 parent 768cb31 commit 343e18b

File tree

6 files changed

+23
-19
lines changed

6 files changed

+23
-19
lines changed

.bumpversion.cfg

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 2.0.0
4+
current_version = 2.1.0
55

66
[bumpversion:file:README.rst]
77

8-
# [bumpversion:file:README.EN.rst]
9-
108
[bumpversion:file:package.json]
119
search = "version": "{current_version}",
1210
replace = "version": "{new_version}",
1311

1412
[bumpversion:file:src/openklant/__init__.py]
15-
16-
# [bumpversion:file:docs/api/index.rst]
17-
18-
# [bumpversion:file:publiccode.yaml]
19-
# search = softwareVersion: {current_version}
20-
# replace = softwareVersion: {new_version}

CHANGELOG.rst

+15-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,32 @@ Change history
55
2.1.0
66
=====
77

8-
*??? ???, 2024*
8+
*July 8, 2024*
99

10-
New features:
10+
**New features**:
1111

1212
* Add support for mounting Open Klant on a ``SUBPATH``
1313
* Elastic APM service name can now be configured with ``ELASTIC_APM_SERVICE_NAME`` envvar
14+
* [#175] added expand for detail endpoints in redoc
1415

1516
.. warning::
1617

1718
The service name for Elastic APM is now configurable via the ``ELASTIC_APM_SERVICE_NAME`` environment variable.
1819
The default value changed from ``Open Klant - <ENVIRONMENT>`` to ``openklant - <ENVIRONMENT>``
1920

20-
Bugfixes/QoL:
21+
**Bugfixes/QoL**:
22+
2123
* Settings module was refactored to use generic settings provided by Open API Framework
24+
* [#187] Streamline environment variables
25+
* Fix help-text icon for datetime field in the admin
26+
27+
**Project maintenance**
28+
29+
* [#179] Fix Trivy github action
30+
* Update to Python 3.11
31+
* [#155] use open-api-framework
32+
* [#188] remove unused notification settings
33+
* Refactor settings module
2234

2335

2436
2.0.0

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Open Klant
33
==========
44

5-
:Version: 2.0.0
5+
:Version: 2.1.0
66
:Source: https://github.com/maykinmedia/open-klant
77
:Keywords: klanten, klantinteracties, contactmomenten, api, common ground
88
:License: EUPL
@@ -39,8 +39,8 @@ Open Klant versie API versie Release datum API specificatie
3939
================== ============== ============= ================
4040
master/latest n/a n/a `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/master/src/openklant/components/klantinteracties/openapi.yaml>`_,
4141
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/master/src/openklant/components/klantinteracties/openapi.yaml>`_
42-
2.0.0 0.0.3 2024-03-15 `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.0.0/src/openklant/components/klantinteracties/openapi.yaml>`_,
43-
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.0.0/src/openklant/components/klantinteracties/openapi.yaml>`_
42+
2.1.0 0.0.3 2024-03-15 `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.1.0/src/openklant/components/klantinteracties/openapi.yaml>`_,
43+
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.1.0/src/openklant/components/klantinteracties/openapi.yaml>`_
4444
1.0.0 0.0.1 2023-08-05 Klanten:
4545
`ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/1.0.0/src/openklant/components/klanten/openapi.yaml>`_,
4646
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/1.0.0/src/openklant/components/klanten/openapi.yaml>`_

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openklant",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "openklant project",
55
"main": "src/static/openklant/js/openklant.js",
66
"directories": {

src/openklant/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .celery import app as celery_app
22

33
__all__ = ("celery_app",)
4-
__version__ = "2.0.0"
4+
__version__ = "2.1.0"
55
__author__ = "Maykin"
66
__homepage__ = "https://github.com/maykinmedia/open-klant"

0 commit comments

Comments
 (0)