Skip to content

Commit

Permalink
Publish version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Feb 17, 2024
1 parent 86469c5 commit f43d928
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -6,6 +6,12 @@ NEXT_NETADDR_VERSION

Date: not released yet

--------------
Release: 1.2.0
--------------

Date: 2024-02-17

Added:

* Add CLI tool subcommand to display :ref:`cli-network-info`.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.2.0'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.2.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 docs/source/reference/cli.rst
Expand Up @@ -57,7 +57,7 @@ interact with it right away, with minimal friction:

In [2]:

.. versionchanged:: NEXT_NETADDR_VERSION
.. versionchanged:: 1.2.0
Made IPython an optional dependency.

.. _IPython: https://pypi.org/project/ipython/
Expand Down
2 changes: 1 addition & 1 deletion netaddr/__init__.py
Expand Up @@ -6,7 +6,7 @@
"""A Python library for manipulating IP and EUI network addresses."""

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

Expand Down

0 comments on commit f43d928

Please sign in to comment.