Skip to content

Commit

Permalink
Release 1.17.2 (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 17, 2024
1 parent 37b04d2 commit 4ab9b12
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 12 deletions.
56 changes: 56 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,62 @@ Changelog

.. towncrier release notes start
1.17.2
======

*(2024-11-17)*


Bug fixes
---------

- Stopped implicitly allowing the use of Cython pre-release versions when
building the distribution package -- by :user:`ajsanchezsanz` and
:user:`markgreene74`.

*Related issues and pull requests on GitHub:*
:issue:`1411`, :issue:`1412`.

- Fixed a bug causing :attr:`~yarl.URL.port` to return the default port when the given port was zero
-- by :user:`gmacon`.

*Related issues and pull requests on GitHub:*
:issue:`1413`.


Features
--------

- Make error messages include details of incorrect type when ``port`` is not int in :py:meth:`~yarl.URL.build`.
-- by :user:`Cycloctane`.

*Related issues and pull requests on GitHub:*
:issue:`1414`.


Packaging updates and notes for downstreams
-------------------------------------------

- Stopped implicitly allowing the use of Cython pre-release versions when
building the distribution package -- by :user:`ajsanchezsanz` and
:user:`markgreene74`.

*Related issues and pull requests on GitHub:*
:issue:`1411`, :issue:`1412`.


Miscellaneous internal changes
------------------------------

- Improved performance of the :py:meth:`~yarl.URL.joinpath` method -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1418`.


----


1.17.1
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1411.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1411.packaging.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1412.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1412.packaging.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1413.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1414.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1418.misc.rst

This file was deleted.

2 changes: 1 addition & 1 deletion yarl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ._query import Query, QueryVariable, SimpleQuery
from ._url import URL, cache_clear, cache_configure, cache_info

__version__ = "1.17.2.dev0"
__version__ = "1.17.2"

__all__ = (
"URL",
Expand Down

0 comments on commit 4ab9b12

Please sign in to comment.