Skip to content

Commit 86a5958

Browse files
committed
2.3.0
1 parent b28165d commit 86a5958

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@
6767
# built documents.
6868
#
6969
# The short X.Y version.
70-
version = "2.2"
70+
version = "2.3"
7171

7272
# The full version, including alpha/beta/rc tags.
73-
release = "2.2.0" # keep in sync with pyproject.toml and telnetlib3/accessories.py !!
73+
release = "2.3.0" # keep in sync with pyproject.toml and telnetlib3/accessories.py !!
7474

7575
# The language for content auto-generated by Sphinx. Refer to documentation
7676
# for a list of supported languages.

docs/history.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
History
22
=======
3-
*unreleased*
3+
2.3.0 *unreleased*
44
* new: ``connect_timeout`` arguments for client and ``--connect-timeout`` Client CLI argument.
5+
* bugfix: missing LICENSE.txt in sdist file.
56

67
2.2.0
78
* bugfix: workaround for Microsoft Telnet client crash on

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "telnetlib3"
7-
version = "2.2.0"
7+
version = "2.3.0"
88
description = " Python Telnet server and client CLI and Protocol library"
99
readme = "README.rst"
1010
license = "ISC"

telnetlib3/accessories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
def get_version() -> str:
2828
"""Return the current version of telnetlib3."""
29-
return "2.2.0" # keep in sync with pyproject.toml and docs/conf.py !!
29+
return "2.3.0" # keep in sync with pyproject.toml and docs/conf.py !!
3030

3131

3232
def encoding_from_lang(lang: str) -> Optional[str]:

0 commit comments

Comments
 (0)