Skip to content

Commit 9b3ea00

Browse files
authored
Merge pull request #368 from joshuagl/joshuagl/v0.21.0
Prepare v0.21.0 release
2 parents e744b68 + a31d966 commit 9b3ea00

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## securesystemslib v0.21.0
4+
**NOTE**: This is the first release of securesystemslib to require Python 3.6
5+
or newer.
6+
7+
### Fixed
8+
* Clarified licensing and copyright notices with regards to code that is
9+
derived from Thandy (#366)
10+
11+
### Added
12+
* Added machinery for static type checking with mypy, including type annotation
13+
of the util module (#361)
14+
* Added type annotations to storage module (#362)
15+
16+
### Changed
17+
* Bumped dependencies: six (#350), cffi (#364), ed25519 (#356),
18+
cryptography (#369)
19+
20+
### Removed
21+
* Removed support for Python 2.7 (#352) and the use of future and six modules
22+
which were required to support code running on both Python 2 and 3 (#359)
23+
324
## securesystemslib v0.20.1
425
**NOTE**: this will be the final release of securesystemslib that supports
526
Python 2.7.

requirements-pinned.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ colorama==0.4.4
33
cryptography==3.4.8
44
pycparser==2.20 # via cffi
55
pynacl==1.4.0
6+
six==1.16.0 # via pynacl

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
setup(
7070
name = 'securesystemslib',
71-
version = '0.20.1',
71+
version = '0.21.0',
7272
description = 'A library that provides cryptographic and general-purpose'
7373
' routines for Secure Systems Lab projects at NYU',
7474
license = 'MIT',
@@ -87,7 +87,6 @@
8787
'Operating System :: POSIX :: Linux',
8888
'Operating System :: MacOS :: MacOS X',
8989
'Operating System :: Microsoft :: Windows',
90-
'Programming Language :: Python',
9190
'Programming Language :: Python :: 3',
9291
'Programming Language :: Python :: 3.6',
9392
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)