Skip to content

Commit 01a708f

Browse files
committed
Release 1.5.0
1 parent 37cf287 commit 01a708f

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

docs/source/release-notes/1.5.0.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
1.5.0 - 2021-05-07
2+
------------------
3+
4+
- Fix bug where a valid IRI is mishandled by ``urlparse`` and
5+
``ParseResultBytes``.
6+
7+
See also `GitHub #57`_
8+
9+
- Add :meth:`~rfc3986.builder.URIBuilder.extend_path`,
10+
:meth:`~rfc3986.builder.URIBuilder.extend_query_with`,
11+
:meth:`~rfc3986.builder.URIBuilder.geturl` to
12+
:class:`~rfc3986.builder.URIBuilder`.
13+
14+
See also `GitHub #29`_
15+
16+
.. links
17+
18+
.. _GitHub #29:
19+
https://github.com/python-hyper/rfc3986/issues/29
20+
21+
.. _GitHub #57:
22+
https://github.com/python-hyper/rfc3986/issues/57

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ here with the newest releases first.
1111
.. toctree::
1212

1313
unreleased
14+
1.5.0
1415
1.4.0
1516
1.3.2
1617
1.3.1
Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,4 @@
11
1.x.y - 202z-aa-bb
22
------------------
33

4-
- Fix bug where a valid IRI is mishandled by ``urlparse`` and
5-
``ParseResultBytes``.
6-
7-
See also `GitHub #57`_
8-
9-
- Add :meth:`~rfc3986.builder.URIBuilder.extend_path`,
10-
:meth:`~rfc3986.builder.URIBuilder.extend_query_with`,
11-
:meth:`~rfc3986.builder.URIBuilder.geturl` to
12-
:class:`~rfc3986.builder.URIBuilder`.
13-
14-
See also `GitHub #29`_
15-
16-
.. links
17-
18-
.. _GitHub #29:
19-
https://github.com/python-hyper/rfc3986/issues/29
20-
21-
.. _GitHub #57:
22-
https://github.com/python-hyper/rfc3986/issues/57
4+
.. links below here

src/rfc3986/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__author_email__ = "[email protected]"
3737
__license__ = "Apache v2.0"
3838
__copyright__ = "Copyright 2014 Rackspace; 2016 Ian Stapleton Cordasco"
39-
__version__ = "1.4.0"
39+
__version__ = "1.5.0"
4040

4141
__all__ = (
4242
"ParseResult",

0 commit comments

Comments
 (0)