Skip to content

Commit 33322be

Browse files
authored
bump version to 1.3.0; add RtD links (#7)
1 parent 313dfce commit 33322be

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ChangeLog
22
=========
33

4-
NEXT
5-
----
4+
1.3.0
5+
-----
66
- Can now parse ECDSA keys (if they're signed with an RSA CA)
77
- Add `.from_file` constructor on `SSHCertificate`
88
- Add a bunch of type hints

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, EasyPost <[email protected]>
1+
Copyright (c) 2017 - 2021, EasyPost <[email protected]>
22

33
Permission to use, copy, modify, and/or distribute this software for any
44
purpose with or without fee is hereby granted, provided that the above

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
`ssh_certificate_parser` is a small library for interacting with [OpenSSH host/user certificates](https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/usr.bin/ssh/PROTOCOL.certkeys?rev=1.15&content-type=text/plain). Specifically, it supports RSA, DSA, and Ed25519 keys signed by an RSA certificate authority. It does not currently validate the CA signature, but merely parses out some fields.
22

33
![CI](https://github.com/EasyPost/ssh_certificate_parser/workflows/CI/badge.svg)
4+
[![Documentation Status](https://readthedocs.org/projects/ssh-certificate-parser/badge/?version=latest)](https://ssh-certificate-parser.readthedocs.io/en/latest/?badge=latest)
45

56
This work is licensed under the ISC license, a copy of which can be found at [LICENSE.txt](LICENSE.txt)
67

@@ -15,3 +16,5 @@ cert = SSHCertificate.from_file('/etc/ssh/ssh_host_rsa_key-cert.pub')
1516

1617
remaining_seconds_of_validity = cert.remaining_validity
1718
```
19+
20+
Full documentation is at <https://ssh-certificate-parser.readthedocs.io/en/latest/>.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="ssh_certificate_parser",
8-
version="1.2.0",
8+
version="1.3.0",
99
author="James Brown",
1010
author_email="[email protected]",
1111
url="https://github.com/easypost/ssh_certificate_parser",

ssh_certificate_parser/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from .parser_helpers import take_list
1717

1818
__author__ = 'EasyPost <[email protected]>'
19-
version_info = (1, 2, 0)
19+
version_info = (1, 3, 0)
2020
__version__ = '.'.join(str(s) for s in version_info)
2121

2222

0 commit comments

Comments
 (0)