Skip to content

Commit ea958bc

Browse files
committed
Prepare 0.13.0 release
Signed-off-by: Joshua Lock <[email protected]>
1 parent 506ae55 commit ea958bc

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

docs/CHANGELOG.md

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

3+
## v0.13.0
4+
* Revise requirements files to have layered requirements (#978, #982)
5+
* Update tutorial instructions (#981, #992) and documentation (#1054, #1001)
6+
* Fix broken CI (#985)
7+
* Add support for BLAKE hash functions (#993)
8+
* Replace hard-coded logger names (#989)
9+
* Don't list root metadata in snapshot metadata (#988)
10+
* Enable targets metadata to be generated without access to the target files (#1007, #1020)
11+
* Fix target file path hashing to ensure paths are hashed as they appear in targets metadata (#1007)
12+
* Refactor code handling hashed bins (#1007, #1013, #1040, #1058)
13+
* Improve performance when delegating to a large number of hashed bins (#1012)
14+
* Improve path handling consistency when adding targets and paths (#1008)
15+
* Clarify error message and docstring for custom parameter of add_target() (#1027)
16+
* Fix tests (#1029, #1064, #1067)
17+
* Implement support for abstract files and directories (#1024, #1034)
18+
* Fix loading of delegated targets during repository load (#1049, #1052, #1071)
19+
* Fix key loading in repo.py (#1066)
20+
* Remove redundant code in downloader (#1073)
21+
* Make lengths and hashes optional for timestamp and snapshot roles (#1031)
22+
* Fix alarming logging in updater (#1092)
23+
324
## v0.12.2
425
* Fix incorrect threshold signature computation (#974)
526
* Drop support for python 3.4 (#966)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
setup(
8080
name = 'tuf',
81-
version = '0.12.2', # If updating version, also update it in tuf/__init__.py
81+
version = '0.13.0', # If updating version, also update it in tuf/__init__.py
8282
description = 'A secure updater framework for Python',
8383
long_description = long_description,
8484
long_description_content_type='text/markdown',

tuf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# setup.py has it hard-coded separately.
33
# Currently, when the version is changed, it must be set in both locations.
44
# TODO: Single-source the version number.
5-
__version__ = "0.12.2"
5+
__version__ = "0.13.0"
66

77
# This reference implementation produces metadata intended to conform to
88
# version 1.0.0 of the TUF specification, and is expected to consume metadata

0 commit comments

Comments
 (0)