Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
version = "2.6"

# The full version, including alpha/beta/rc tags.
release = "2.6.0" # keep in sync with pyproject.toml and telnetlib3/accessories.py !!
release = "2.6.1" # keep in sync with pyproject.toml and telnetlib3/accessories.py !!

# The language for content auto-generated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 3 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
History
=======
2.6.1
* bugfix: dependency of wcwidth version.

2.6.0
* new: TLS support (TELNETS). :func:`~telnetlib3.client.open_connection`
accepts an ``ssl`` parameter (``True``, or an :class:`ssl.SSLContext`).
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "telnetlib3"
version = "2.6.0"
version = "2.6.1"
description = " Python Telnet server and client CLI and Protocol library"
readme = "README.rst"
license = "ISC"
Expand Down Expand Up @@ -44,7 +44,7 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"wcwidth>=0.2.13",
"wcwidth>=0.6.0",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion telnetlib3/accessories.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

def get_version() -> str:
"""Return the current version of telnetlib3."""
return "2.6.0" # keep in sync with pyproject.toml and docs/conf.py !!
return "2.6.1" # keep in sync with pyproject.toml and docs/conf.py !!


def encoding_from_lang(lang: str) -> Optional[str]:
Expand Down
Loading