We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f93d74 commit 4c299c8Copy full SHA for 4c299c8
2 files changed
HISTORY.rst
@@ -1,6 +1,15 @@
1
Changelog - uritemplate
2
=======================
3
4
+4.2.0 - 2025-06-01
5
+------------------
6
+
7
+- Drop support for Python 3.8
8
+- Fix bug where already url-encoded values were further escaped and
9
+ encoded (See https://github.com/python-hyper/uritemplate/issues/99)
10
+- Refactor ``uritemplate/variable.py`` to enable fixing the
11
+ aforementioned bug.
12
13
4.1.1 - 2021-10-13
14
------------------
15
uritemplate/__init__.py
@@ -20,7 +20,7 @@
20
__author__ = "Ian Stapleton Cordasco"
21
__license__ = "Modified BSD or Apache License, Version 2.0"
22
__copyright__ = "Copyright 2013 Ian Stapleton Cordasco"
23
-__version__ = "4.1.1"
+__version__ = "4.2.0"
24
__version_info__ = tuple(
25
int(i) for i in __version__.split(".") if i.isdigit()
26
)
0 commit comments