Skip to content

Commit

Permalink
🔖 [#52] Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Mar 4, 2025
1 parent b1563aa commit fc49bac
Show file tree
Hide file tree
Showing 10 changed files with 67 additions and 13 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.2.0
current_version = 0.3.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
50 changes: 44 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,49 @@
Change history
==============

0.2.0
=====
0.3.0 (2025-03-04)
------------------

*October 04, 2024*
**New features**

* [:open-api-framework:`23`] Add support for new version of ``django-setup-configuration``, the following steps were
added/updated. For more information on how to provide configuration for these steps, see
:ref:`installation_configuration_cli`

* Configuration of OpenID Connect authentication for admin users (Single Sign On)


**Bugfixes and QOL**

* [:referentielijsten:`41`] Order API endpoints by pk (descending)
* [:open-api-framework:`79`] disable admin nav sidebar


**Documentation**

* [:referentielijsten:`43`] Update documentation for setup-configuration
* Add configuration for readthedocs

**Project maintenance**

* Upgrading dependencies:

* Upgrade npm packages to fix vulnerabilities
* Upgrade python packages to fix vulnerabilities
* Upgrade open-api-framework to 0.9.3
* Upgrade mozilla-django-oidc-db to 0.22.0
* Upgrade django-setup-configuration to 0.7.1
* Upgrade zgw-consumers to 0.35.1
* Upgrade commonground-api-common to 2.5.1
* [:open-api-framework:`107`] Add bump-my-version to dev dependencies
* [:open-api-framework:`102`] Add quick-start workflow to test docker-compose.yml
* [:open-api-framework:`44`] add workflow to CI to auto-update open-api-framework
* [:open-api-framework:`81`] Switch from pip-compile to UV
* [:open-api-framework:`92`] Fix docker latest tag publish
* [:open-api-framework:`13`] Switch to use reusable open-api-workflows in github actions

0.2.0 (2024-10-04)
------------------

**New features**

Expand Down Expand Up @@ -52,9 +91,8 @@ Change history
* [#20] Update dependencies and fixed broken oidc tests
* [#17] Refactor base settings

0.1.0
=====
0.1.0 (2024-05-28)
------------------

*May 28, 2024*

* Initial release.
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.2.0
:Version: 0.3.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.2.0
:Version: 0.3.0
:Source: https://github.com/maykinmedia/referentielijsten
:Keywords: referentielijsten, stamtabellen

Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.. _changelog:

.. include:: ../CHANGELOG.rst
12 changes: 12 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
# "sphinx_tabs.tabs",
# "recommonmark",
# "sphinx_markdown_tables",
"sphinx.ext.extlinks",
"sphinx.ext.autodoc",
"django_setup_configuration.documentation.setup_config_example",
"django_setup_configuration.documentation.setup_config_usage",
Expand Down Expand Up @@ -99,3 +100,14 @@
r"http://localhost:3000*",
r"https://some-app.gemeente.nl*",
]

extlinks = {
"referentielijsten": (
"https://github.com/maykinmedia/referentielijsten/issues/%s",
"#%s",
),
"open-api-framework": (
"https://github.com/maykinmedia/open-api-framework/issues/%s",
"#%s",
),
}
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ To get you started, you might find some of these links relevant:

introduction/index
installation/index
changelog
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2.0",
"version": "0.3.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.2.0"
__version__ = "0.3.0"
__author__ = "Maykin"
__homepage__ = "https://github.com/maykinmedia/referentielijsten"

0 comments on commit fc49bac

Please sign in to comment.