diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a06b5c..137e9b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.15.0 (2024-05-23) + +- Add bandwidth control (`limit_bw`) + ## 0.14.5 (2023-01-30) - Update docstrings to clarify sanitation and use of wildcards diff --git a/scp.py b/scp.py index 0181481..922b922 100644 --- a/scp.py +++ b/scp.py @@ -5,7 +5,7 @@ Utilities for sending files over ssh using the scp1 protocol. """ -__version__ = '0.14.5' +__version__ = '0.15.0' import locale import os diff --git a/setup.py b/setup.py index 66623c6..af79c97 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ description = fp.read() setup( name = 'scp', - version = '0.14.5', + version = '0.15.0', author = 'James Bardin', author_email = 'j.bardin@gmail.com', maintainer="Remi Rampin",