diff --git a/CHANGELOG.md b/CHANGELOG.md index d6f3951..8fbc218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.3.1](https://github.com/sshuttle/sshuttle/compare/v1.3.0...v1.3.1) (2025-03-25) + + +### Bug Fixes + +* add pycodestyle config ([5942376](https://github.com/sshuttle/sshuttle/commit/5942376090395d0a8dfe38fe012a519268199341)) +* add python lint tools ([ae3c022](https://github.com/sshuttle/sshuttle/commit/ae3c022d1d67de92f1c4712d06eb8ae76c970624)) +* correct bad version number at runtime ([7b66253](https://github.com/sshuttle/sshuttle/commit/7b662536ba92d724ed8f86a32a21282fea66047c)) +* Restore "nft" method ([375810a](https://github.com/sshuttle/sshuttle/commit/375810a9a8910a51db22c9fe4c0658c39b16c9e7)) + ## [1.3.0](https://github.com/sshuttle/sshuttle/compare/v1.2.0...v1.3.0) (2025-02-23) diff --git a/pyproject.toml b/pyproject.toml index 2a4f789..c06f1ff 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.0" +version = "1.3.1" 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 781aae6..d4b09f3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.3.1 [bumpversion:file:setup.py] diff --git a/sshuttle/__init__.py b/sshuttle/__init__.py index 67bc602..9c73af2 100644 --- a/sshuttle/__init__.py +++ b/sshuttle/__init__.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1"