From 2d722bd41a599b02e557d7fe039652aec7c92978 Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Tue, 15 Feb 2022 09:34:27 -0500 Subject: [PATCH] Bump version to 0.14.3 --- CHANGELOG.md | 4 ++++ scp.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e19a03a..077ef29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.14.3 (2022-02-15) + +- Add type hints + ## 0.14.2 (2021-12-15) - Don't fail if the remote path is a PurePath not a Path diff --git a/scp.py b/scp.py index 6d64c4c..13fa155 100644 --- a/scp.py +++ b/scp.py @@ -5,7 +5,7 @@ Utilities for sending files over ssh using the scp1 protocol. """ -__version__ = '0.14.2' +__version__ = '0.14.3' import locale import os diff --git a/setup.py b/setup.py index ddec138..45e912f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ description = fp.read() setup( name = 'scp', - version = '0.14.2', + version = '0.14.3', author = 'James Bardin', author_email = 'j.bardin@gmail.com', maintainer="Remi Rampin",