Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 25, 2024
1 parent 3e32b1c commit 5d605d3
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 13 deletions.
21 changes: 21 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ CHANGELOG

.. towncrier release notes start
2.1.0 (2024-10-25)
==================

Breaking changes
----------------

- Drop support for Python 3.8 (Already Reached EOL)


Features
--------

- Declare Support for Python 3.13


Miscellaneus
------------

- `#741 <https://https://github.com/fizyk/pyramid_fullauth/issues/741>`_, `#744 <https://https://github.com/fizyk/pyramid_fullauth/issues/744>`_, `#765 <https://https://github.com/fizyk/pyramid_fullauth/issues/765>`_, `#775 <https://https://github.com/fizyk/pyramid_fullauth/issues/775>`_


2.0.2 (2023-11-06)
==================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pyramid_fullauth
:target: https://pypi.python.org/pypi/pyramid_fullauth/
:alt: Latest PyPI version

.. image:: https://readthedocs.org/projects/pyramid_fullauth/badge/?version=v2.0.2
:target: https://readthedocs.org/projects/pyramid_fullauth/?badge=v2.0.2
.. image:: https://readthedocs.org/projects/pyramid_fullauth/badge/?version=v2.1.0
:target: https://readthedocs.org/projects/pyramid_fullauth/?badge=v2.1.0
:alt: Documentation Status

.. image:: https://img.shields.io/pypi/dm/pyramid_fullauth.svg
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# The short X.Y version.

# The full version, including alpha/beta/rc tags.
release = "2.0.2"
release = "2.1.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 0 additions & 1 deletion newsfragments/+91b7f07a.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+bb78f14b.break.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/741.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/744.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/765.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/775.misc.rst

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyramid_fullauth"
version = "2.0.2"
version = "2.1.0"
description = "pyramid_fullauth provides full authentication / authorisation implementation for pyramid applications"
readme = "README.rst"
keywords = ["pyramid", "authentication", "authorisation", "user"]
Expand Down Expand Up @@ -42,7 +42,7 @@ requires-python = ">= 3.9"
[project.urls]
"Source" = "https://github.com/fizyk/pyramid_fullauth/"
"Bug Tracker" = "https://github.com/fizyk/pyramid_fullauth/issues"
"Changelog" = "https://github.com/fizyk/pyramid_fullauth/blob/v2.0.2/CHANGES.rst"
"Changelog" = "https://github.com/fizyk/pyramid_fullauth/blob/v2.1.0/CHANGES.rst"
"Documentation" = "https://fizyk.dev/pyramid_fullauth/"

[project.optional-dependencies]
Expand Down Expand Up @@ -114,7 +114,7 @@ max-returns = 7
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "2.0.2"
current = "2.1.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pyramid_fullauth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from pyramid_fullauth.request import login_perform, logout, request_user
from pyramid_fullauth.routing import predicates

__version__ = "2.0.2"
__version__ = "2.1.0"

from pyramid_fullauth.security import FullAuthSecurityPolicy

Expand Down

0 comments on commit 5d605d3

Please sign in to comment.