Skip to content
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
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
=========

1.1.0 (2025-11-18)
==================

Minor release

* [#157] Relocate shared test utility ``keycloak_login`` to ``mozilla_django_oidc_db/tests/utils``
to make sure upstream projects can make use of it

1.0.2 (2025-10-24)
==================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
mozilla-django-oidc-db
======================

:Version: 1.0.2
:Version: 1.1.0
:Source: https://github.com/maykinmedia/mozilla-django-oidc-db
:Keywords: OIDC, django, database, authentication

Expand Down Expand Up @@ -46,7 +46,7 @@ Please see the hosted `documentation`_ for installation, configuration and usage
:target: https://github.com/maykinmedia/mozilla-django-oidc-db/actions/workflows/ci.yml

.. |coverage| image:: https://codecov.io/gh/maykinmedia/mozilla-django-oidc-db/branch/master/graph/badge.svg
:target: https://codecov.io/gh/maykinmedia/mozilla-django-oidc-db
:target: https://app.codecov.io/gh/maykinmedia/mozilla-django-oidc-db
:alt: Coverage status

.. |ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Maykin Media"

# The full version, including alpha/beta/rc tags
release = "1.0.2"
release = "1.1.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Indices and tables
:alt: Ruff

.. |coverage| image:: https://codecov.io/gh/maykinmedia/mozilla-django-oidc-db/branch/master/graph/badge.svg
:target: https://codecov.io/gh/maykinmedia/mozilla-django-oidc-db
:target: https://app.codecov.io/gh/maykinmedia/mozilla-django-oidc-db
:alt: Coverage status

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/mozilla_django_oidc_db.svg
Expand Down
3 changes: 3 additions & 0 deletions docs/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ Tests

.. automodule:: mozilla_django_oidc_db.tests.mixins
:members:

.. automodule:: mozilla_django_oidc_db.tests.utils
:members:
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mozilla-django-oidc-db"
version = "1.0.2"
version = "1.1.0"
description = "A database-backed configuration for mozilla-django-oidc"
authors = [
{name = "Maykin Media", email = "[email protected]"}
Expand Down Expand Up @@ -84,7 +84,7 @@ markers = [
]

[tool.bumpversion]
current_version = "1.0.2"
current_version = "1.1.0"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
Expand Down
Loading