diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f8803..49474d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.3.3](https://github.com/sshuttle/sshuttle/compare/v1.3.2...v1.3.3) (2025-08-12) + + +### Bug Fixes + +* route PRINT -4 to_ascii [windows] ([cb9c0f3](https://github.com/sshuttle/sshuttle/commit/cb9c0f3548c0af9cf224e069aca596c2f1308c22)) + ## [1.3.2](https://github.com/sshuttle/sshuttle/compare/v1.3.1...v1.3.2) (2025-08-08) diff --git a/pyproject.toml b/pyproject.toml index 5a32eed..e952813 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ license = {text = "LGPL-2.1"} requires-python = "<4.0,>=3.9" dependencies = [] name = "sshuttle" -version = "1.3.2" +version = "1.3.3" description = "Transparent proxy server that works as a poor man's VPN. Forwards over ssh. Doesn't require admin. Works with Linux and MacOS. Supports DNS tunneling." readme = "README.rst" classifiers = [ diff --git a/setup.cfg b/setup.cfg index 9c0f9a8..ed8db97 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.2 +current_version = 1.3.3 [bumpversion:file:setup.py] diff --git a/sshuttle/__init__.py b/sshuttle/__init__.py index f708a9b..7b1e312 100644 --- a/sshuttle/__init__.py +++ b/sshuttle/__init__.py @@ -1 +1 @@ -__version__ = "1.3.2" +__version__ = "1.3.3"