From b1da7ecb7096d03d0a83f6e1fb1183db1ac6f424 Mon Sep 17 00:00:00 2001 From: Olli Jarva Date: Wed, 28 Feb 2018 15:39:08 +0200 Subject: [PATCH] Bump version --- README.rst | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fce13f1..cc16fe0 100644 --- a/README.rst +++ b/README.rst @@ -4,6 +4,17 @@ OpenSSH Public Key Parser for Python .. image:: https://travis-ci.org/ojarva/python-sshpubkeys.svg?branch=master :target: https://travis-ci.org/ojarva/python-sshpubkeys +Major changes between versions 2 and 3 +-------------------------------------- + +- Dropped support for Python 2.6 and 3.3 +- Even in loose mode, DSA keys must be 1024, 2048, or 3072 bits (earlier this was looser) +- The interface (API) is exactly the same + + +Usage +----- + Native implementation for validating OpenSSH public keys. Currently ssh-rsa, ssh-dss (DSA), ssh-ed25519 and ecdsa keys with NIST curves are supported. diff --git a/setup.py b/setup.py index 7c88951..d09540c 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='sshpubkeys', - version='2.3.0', + version='3.0.0', description='SSH public key parser', long_description=long_description, url='https://github.com/ojarva/python-sshpubkeys',