Skip to content

Commit 0d82fee

Browse files
authored
Merge pull request #40 from SethMichaelLarson/release/1.2.0
Bump version to 1.2.0
2 parents d8fb589 + d11566a commit 0d82fee

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
1.2.0 -- 2018-12-04
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+
- Fix hashing for URIReferences on Python 3.
16+
17+
See also `GitHub !35`_
18+
19+
.. links
20+
21+
.. _GitHub !35:
22+
https://github.com/python-hyper/rfc3986/pull/35
23+
24+
.. _GitHub #38:
25+
https://github.com/python-hyper/rfc3986/pull/38
26+
27+
.. _GitHub #39:
28+
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)