Skip to content

Commit

Permalink
Release version 0.10.1 (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Jan 2, 2024
1 parent 61e8390 commit 21e2e74
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
NEXT_NETADDR_VERSION
--------------------

Date: YYYY-MM-DD
Date: not released yet

---------------
Release: 0.10.1
---------------

Date: 2024-01-02

Fixed:

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.10.0'
version = '0.10.1'
# The full version, including alpha/beta/rc tags.
release = '0.10.0'
release = '0.10.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion netaddr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""A Python library for manipulating IP and EUI network addresses."""

#: Version info (major, minor, maintenance, status)
__version__ = '0.10.0'
__version__ = '0.10.1'
VERSION = tuple(int(part) for part in __version__.split('.'))
STATUS = ''

Expand Down
2 changes: 1 addition & 1 deletion netaddr/strategy/ipv4.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def valid_str(addr, flags=0):
addr value. Supported constants are INET_PTON and ZEROFILL. See the
:class:`IPAddress` documentation for details.
.. versionchanged:: NEXT_NETADDR_VERSION
.. versionchanged:: 0.10.1
``flags`` is scheduled to default to :data:`INET_PTON` instead of :data:`INET_ATON`
in the future.
Expand Down

0 comments on commit 21e2e74

Please sign in to comment.