Skip to content

Commit 4c299c8

Browse files
committed
Add release notes for 4.2.0
Prepare to release 4.2.0
1 parent 0f93d74 commit 4c299c8

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

HISTORY.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog - uritemplate
22
=======================
33

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+
413
4.1.1 - 2021-10-13
514
------------------
615

uritemplate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = "Ian Stapleton Cordasco"
2121
__license__ = "Modified BSD or Apache License, Version 2.0"
2222
__copyright__ = "Copyright 2013 Ian Stapleton Cordasco"
23-
__version__ = "4.1.1"
23+
__version__ = "4.2.0"
2424
__version_info__ = tuple(
2525
int(i) for i in __version__.split(".") if i.isdigit()
2626
)

0 commit comments

Comments
 (0)