Skip to content

Commit 3d4443d

Browse files
committed
Prepare 0.13.0 release
Signed-off-by: Joshua Lock <[email protected]>
1 parent 269173b commit 3d4443d

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

docs/CHANGELOG.md

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

3+
## v0.13.0
4+
* Revise requirements files to have layered requirements (#978, #982)
5+
* Update tutorial instructions (#981, #992) and documenntation (#1054)
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+
* Remove obsolete client documentation (#1001)
11+
* Enable targets metadata to be generated without access to the target files (#1007, #1020)
12+
* Fix file path hashing to ensure they are hashed as they appear in targets metadata (#1007)
13+
* Refactor code handling hashed bins (#1007, #1013, #1040, #1058)
14+
* Make delegating to a large number of hashed bins more performant (#1012)
15+
* Improve path handling consistency when adding targets and paths (#1008)
16+
* Clarify error message and docstring for custom parameter of add_target() (#1027)
17+
* Fix tests (#1029, #1064, #1067)
18+
* Implement support for abstract files and directories (#1024, #1034)
19+
* Fix loading of delegated targets during repository load (#1049, #1052, #1071)
20+
* Fix key loading in repo.py (#1066)
21+
* Remove redundant code in downloader (#1073)
22+
* Make lengths and hashes optional for timestamp and snapshot roles (#1031)
23+
* Fix alarming logging in updater (#1092)
24+
325
## v0.12.2
426
* Fix incorrect threshold signature computation (#974)
527
* 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)