Skip to content

Commit

Permalink
Release 0.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
swrichards committed Jan 9, 2025
1 parent 7a99838 commit 301f24a
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 35 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
=========

0.19.2 (2025-01-09)
===================

Very small patch release.

* The default value for DIGID_MOCK_IDP_VALIDATE_CALLBACK_URLS is no longer equal to
settings.DEBUG but to its inverse.

0.19.1 (2025-01-08)
===================

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 @@
django-digid-eherkenning
========================

:Version: 0.19.1
:Version: 0.19.2
:Source: https://github.com/maykinmedia/django-digid-eherkenning
:Keywords: django, authentication, digid, eherkenning, eidas, dutch, nl, netherlands

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
author = "Maykin Media"

# The full version, including alpha/beta/rc tags
release = "0.19.1"
release = "0.19.2"


# -- General configuration ---------------------------------------------------
Expand Down
65 changes: 32 additions & 33 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ build-backend = "setuptools.build_meta"

[project]
name = "django-digid-eherkenning"
version = "0.19.1"
version = "0.19.2"
description = "A Django app for DigiD/eHerkenning authentication flows"
authors = [
{name = "Maykin Media", email = "[email protected]"}
]
authors = [{ name = "Maykin Media", email = "[email protected]" }]
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["django", "authentication", "digid", "eherkenning", "eidas", "dutch", "nl", "netherlands"]
license = { file = "LICENSE" }
keywords = [
"django",
"authentication",
"digid",
"eherkenning",
"eidas",
"dutch",
"nl",
"netherlands",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
Expand Down Expand Up @@ -45,9 +52,7 @@ Documentation = "https://django-digid-eherkenning.readthedocs.io/en/latest/"
Changelog = "https://github.com/maykinmedia/django-digid-eherkenning/blob/master/CHANGELOG.rst"

[project.optional-dependencies]
oidc = [
"mozilla-django-oidc-db>=0.19.1",
]
oidc = ["mozilla-django-oidc-db>=0.19.1"]
tests = [
"django-test-migrations",
"pytest",
Expand All @@ -60,18 +65,9 @@ tests = [
"black",
"flake8",
]
coverage = [
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"psycopg2",
]
release = [
"bump-my-version",
"twine",
]
coverage = ["pytest-cov"]
docs = ["sphinx", "sphinx-rtd-theme", "psycopg2"]
release = ["bump-my-version", "twine"]

[tool.setuptools.packages.find]
include = ["digid_eherkenning*"]
Expand All @@ -81,8 +77,15 @@ namespaces = false
profile = "black"
combine_as_imports = true
known_django = "django"
known_first_party="digid_eherkenning"
sections=["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
known_first_party = "digid_eherkenning"
sections = [
"FUTURE",
"STDLIB",
"DJANGO",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
skip = ["env", "node_modules", ".tox"]
skip_glob = ["**/migrations/**"]

Expand All @@ -96,18 +99,16 @@ markers = [
]

[tool.bumpversion]
current_version = "0.19.1"
current_version = "0.19.2"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
{filename = "docs/conf.py"},
{ filename = "pyproject.toml" },
{ filename = "README.rst" },
{ filename = "docs/conf.py" },
]

[tool.coverage.run]
branch = true
source = [
"digid_eherkenning"
]
source = ["digid_eherkenning"]
omit = [
# migrations run while django initializes the test db
"*/migrations/*",
Expand All @@ -123,6 +124,4 @@ exclude_also = [
"raise NotImplementedError",
"\\.\\.\\.",
]
omit = [
"*/migrations/*",
]
omit = ["*/migrations/*"]

0 comments on commit 301f24a

Please sign in to comment.