Skip to content

Commit f118d1a

Browse files
committed
Bump version to 1.2.0
1 parent 2299e27 commit f118d1a

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ Contributors
1111
- Derek Higgins
1212
- Victor Stinner
1313
- Viktor Haag
14+
- Seth Michael Larson

docs/source/release-notes/1.2.0.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
1.2.0 -- 2018-12-07
2+
-------------------
3+
4+
- Attempt to detect percent-encoded URI components and
5+
encode ``%`` characters if required.
6+
7+
See also `GitHub #38`_
8+
9+
- Allow percent-encoded bytes within host.
10+
11+
See also `GitHub #39`_
12+
13+
- Correct the IPv6 regular expression by adding a missing variation.
14+
15+
.. links
16+
17+
.. _GitHub #38:
18+
https://github.com/python-hyper/rfc3986/pull/38
19+
20+
.. _GitHub #39:
21+
https://github.com/python-hyper/rfc3986/pull/39

docs/source/release-notes/index.rst

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

1111
.. toctree::
1212

13+
1.2.0
1314
1.1.0
1415
1.0.0
1516

src/rfc3986/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__author_email__ = '[email protected]'
3535
__license__ = 'Apache v2.0'
3636
__copyright__ = 'Copyright 2014 Rackspace'
37-
__version__ = '1.1.0'
37+
__version__ = '1.2.0'
3838

3939
__all__ = (
4040
'ParseResult',

0 commit comments

Comments
 (0)