Skip to content

Commit

Permalink
Prepare to release 2.0.0
Browse files Browse the repository at this point in the history
Update release notes and version string
  • Loading branch information
sigmavirus24 committed Jan 10, 2022
1 parent 2d0317b commit 3748200
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 15 deletions.
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Expand Up @@ -29,6 +29,10 @@ repos:
additional_dependencies:
- flake8-docstrings
- flake8-import-order
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.19.0
hooks:
- id: setup-cfg-fmt
#- repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.910-1
# hooks:
Expand Down
13 changes: 13 additions & 0 deletions docs/source/release-notes/2.0.0.rst
@@ -0,0 +1,13 @@
2.0.0 - 2022-01-10
------------------

- Drop support for Python 2.7, 3.3, 3.4, 3.5, 3.6

- Add support for Python 3.8, 3.9, 3.10

- Fix bug in resolving URIs that only contain schemes which are valid per the
RFC - `bug 81`_

.. links below here
.. _bug 81:
https://github.com/python-hyper/rfc3986/issues/81
9 changes: 8 additions & 1 deletion docs/source/release-notes/index.rst
Expand Up @@ -5,12 +5,19 @@
All of the release notes that have been recorded for |rfc3986| are organized
here with the newest releases first.

1.x Release Series
2.x Release Series
==================

.. toctree::

unreleased
2.0.0

1.x Release Series
==================

.. toctree::

1.5.0
1.4.0
1.3.2
Expand Down
11 changes: 2 additions & 9 deletions docs/source/release-notes/unreleased.rst
@@ -1,13 +1,6 @@
2.0.0 - 202z-aa-bb
2.x.y - 202z-aa-bb
------------------

- Drop support for Python 2.7, 3.3, 3.4, 3.5, 3.6

- Add support for Python 3.8, 3.9, 3.10

- Fix bug in resolving URIs that only contain schemes which are valid per the
RFC - `bug 81`_
- *Add Items here*

.. links below here
.. _bug 81:
https://github.com/python-hyper/rfc3986/issues/81
15 changes: 11 additions & 4 deletions setup.cfg
Expand Up @@ -3,31 +3,38 @@ name = rfc3986
version = attr: rfc3986.__version__
description = Validating URI References per RFC 3986
long_description = file: README.rst
long_description_content_type = text/x-rst
url = http://rfc3986.readthedocs.io
author = Ian Stapleton Cordasco
author_email = graffatcolmingov@gmail.com
url = http://rfc3986.readthedocs.io
license = Apache 2.0
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython

[options]
packages = find:
package_dir = =src
python_requires = >=3.7
include_package_data = True
package_dir = =src

[options.packages.find]
where = src

[options.extras_require]
idna2008 = idna
idna2008 =
idna

[options.package_data]
* =
Expand Down
2 changes: 1 addition & 1 deletion src/rfc3986/__init__.py
Expand Up @@ -33,7 +33,7 @@
__author_email__ = "graffatcolmingov@gmail.com"
__license__ = "Apache v2.0"
__copyright__ = "Copyright 2014 Rackspace; 2016 Ian Stapleton Cordasco"
__version__ = "1.5.0"
__version__ = "2.0.0"

__all__ = (
"ParseResult",
Expand Down

0 comments on commit 3748200

Please sign in to comment.