diff --git a/docs/source/release-notes/1.1.0.rst b/docs/source/release-notes/1.1.0.rst new file mode 100644 index 0000000..c169100 --- /dev/null +++ b/docs/source/release-notes/1.1.0.rst @@ -0,0 +1,15 @@ +1.1.0 -- 2017-07-18 +------------------- + +- Correct the regular expression for the User Information sub-component of the + Authority Component. + + See also `GitHub #26`_ + +- :meth:`~rfc3986.validators.Validator.check_validity_of` to the + :class:`~rfc3986.validators.Validator` class. See + :ref:`Validating URIs ` documentation for more information. + +.. links +.. _GitHub #26: + https://github.com/sigmavirus24/rfc3986/pull/26 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index 9db3f71..0c7044e 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -10,6 +10,7 @@ here with the newest releases first. .. toctree:: + 1.1.0 1.0.0 0.x Release Series diff --git a/docs/source/user/validating.rst b/docs/source/user/validating.rst index 2b0ff96..39e900c 100644 --- a/docs/source/user/validating.rst +++ b/docs/source/user/validating.rst @@ -1,3 +1,5 @@ +.. _validating: + ================= Validating URIs =================