Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Feb 14, 2024
1 parent d0db97a commit d929b6e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ NEXT_NETADDR_VERSION

Date: not released yet

-----
1.1.0
-----

Date: 2024-02-15

Added:

* Add the required Python version to the package metadata (GH :issue:`365`).
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.0'
version = '1.1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.1.0'

# 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__ = '1.0.0'
__version__ = '1.1.0'
VERSION = tuple(int(part) for part in __version__.split('.'))
STATUS = ''

Expand Down
2 changes: 1 addition & 1 deletion netaddr/ip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ class IPNetwork(BaseIP, IPListMixin):
Removed the ``implicit_prefix`` switch that used to enable the abbreviated CIDR
format support, use :func:`cidr_abbrev_to_verbose` if you need this behavior.
.. versionchanged:: NEXT_NETADDR_VERSION
.. versionchanged:: 1.1.0
Removed partial IPv4 address support accidentally left when making 1.0.0 release.
Use :func:`expand_partial_ipv4_address` if you need this behavior.
"""
Expand Down
2 changes: 1 addition & 1 deletion netaddr/strategy/ipv4.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def expand_partial_address(addr):
>>> expand_partial_address('1.2')
'1.2.0.0'
.. versionadded:: NEXT_NETADDR_VERSION
.. versionadded:: 1.1.0
"""
tokens = []

Expand Down

0 comments on commit d929b6e

Please sign in to comment.