Skip to content

Commit 6988bda

Browse files
committed
Release 1.16
1 parent 50a4d40 commit 6988bda

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This version supports Python3. Python 2 support was deprecated on Jan 1st, 2020:
1313

1414
#### Warning ####
1515

16+
Version 1.16.X is the latest version supporting Python2, consider its use deprecated. 1.17 won't be Python2 compatible.
17+
1618
Version 1.13.0 sets sha256 and rsa-sha256 as default algorithms
1719

1820
Version 1.8.0 sets strict mode active by default
@@ -88,7 +90,7 @@ Installation
8890

8991
### Dependencies ###
9092

91-
* python 2.7 // python 3.6
93+
* python 2.7 (deprecated) // python 3.6
9294
* [xmlsec](https://pypi.python.org/pypi/xmlsec) Python bindings for the XML Security Library.
9395
* [lxml](https://pypi.python.org/pypi/lxml) Python bindings for the libxml2 and libxslt libraries.
9496
* [isodate](https://pypi.python.org/pypi/isodate) An ISO 8601 date/time/

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# python3-saml changelog
2+
### 1.16.0 (Oct 9, 2023)
3+
- [#364](https://github.com/SAML-Toolkits/python3-saml/commit/d1bfaeb17a786735827b8252b91deafde29dabd8) Improve get_metadata method from Parser, allowing to set headers
4+
- Fix WantAuthnRequestsSigned parser
5+
- Fix expired payloads used on tests
6+
- Updated content from docs folder
7+
28
### 1.15.0 (Dec 27, 2022)
39
- [#317](https://github.com/SAML-Toolkits/python3-saml/pull/317) Handle unicode characters gracefully in python 2
410
- [#338](https://github.com/SAML-Toolkits/python3-saml/pull/338) Fix WantAuthnRequestsSigned parser

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python3-saml"
3-
version = "1.15.0"
3+
version = "1.16.0"
44
description = "Saml Python Toolkit. Add SAML support to your Python software using this library"
55
license = "Apache-2.0"
66
authors = ["SAML-Toolkits <[email protected]>"]

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='python3-saml',
9-
version='1.15.0',
9+
version='1.16.0',
1010
description='Saml Python Toolkit. Add SAML support to your Python software using this library',
1111
classifiers=[
1212
'Development Status :: 5 - Production/Stable',
@@ -20,6 +20,8 @@
2020
'Programming Language :: Python :: 3.8',
2121
'Programming Language :: Python :: 3.9',
2222
'Programming Language :: Python :: 3.10',
23+
'Programming Language :: Python :: 3.11',
24+
'Programming Language :: Python :: 3.12',
2325
],
2426
license='MIT',
2527
url='https://github.com/SAML-Toolkits/python3-saml',

0 commit comments

Comments
 (0)