Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.3.0 release #16

Merged
merged 4 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2
current_version = 0.3.0

[bumpversion:file:setup.cfg]

Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sphinx:
configuration: docs/conf.py

python:
version: 3.8
version: 3.10
install:
- method: pip
path: .
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
Changelog
=========

0.3.0 (2024-10-24)
------------------

* Upgraded Django requirement to >= 4.2
* Upgraded minimum python requirement to >= 3.10
* Added python 3.12 support
* Added the `NOTIFICATIONS_GUARANTEE_DELIVERY` environment variable which allows
`RuntimeError`s to be raised (or not to) whenever no Notifications API is
configured. The default for this setting is set to `True`.
* Upgraded zgw-consumers to 0.35.1
* This removed support for retrieving external OAS files to determine
* This requires `zgw_consumers.models.Service` ("service") instances to be
created to do external API calls through `zgw_consumer`

0.2.2 (2023-04-20)
------------------

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

:Version: 0.2.2
:Version: 0.3.0
:Source: https://github.com/maykinmedia/notifications-api-common
:Keywords: notifications, REST, API, Common Ground, ZGW
:PythonVersion: 3.10
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = "Maykin Media"

# The full version, including alpha/beta/rc tags
release = "0.2.2"
release = "0.3.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion notifications_api_common/locale/en/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 0.2.2\n"
"Project-Id-Version: 0.3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-14 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
2 changes: 1 addition & 1 deletion notifications_api_common/locale/nl/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 0.2.2\n"
"Project-Id-Version: 0.3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-14 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = notifications-api-common
version = 0.2.2
version = 0.3.0
description = Re-usable integration layer for the Common Ground Notifications API specification.
long_description = file: README.rst
url = https://github.com/maykinmedia/notifications-api-common
Expand Down
Loading