Skip to content

Commit 8169b00

Browse files
committed
Prepare 0.15.0 release
Update docs/CHANGELOG.md and bump version number for a 0.15.0 release Signed-off-by: Joshua Lock <jlock@vmware.com>
1 parent bbcff07 commit 8169b00

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

docs/CHANGELOG.md

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

3+
## v0.15.0
4+
### Added
5+
* Simple TUF role metadata model in the `tuf.api` package for interacting with
6+
metadata files directly, per-file without the overheads of reading and
7+
writing the entire repository at once (#1112)
8+
* Raise `MissingLocalRepositoryError` in updater when local repository can not
9+
be found (#1173)
10+
11+
### Changed
12+
* Raise an error in `tuf.client.updater` when metadata is loaded without a
13+
signature (#1100)
14+
* Print a warning in `tuf.repository_tool` when metadata is written without a
15+
signature (#1100)
16+
* Remove iso8661 dependency (#1176)
17+
* Bump dependencies: cffi (#1146), cryptography (#1149), urllib (#1179)
18+
* Overhauled logging to be less verbose and less alarming, by removing logging
19+
in the library when an exception is raised (including the same information
20+
that was logged) and using more appropriate log levels (#1145)
21+
* Make test output more useful by reducing and improving logging (#1145, #1104, #1170)
22+
* Make the `targets_path`, `metadata_path` and `confined_target_dirs` fields in
23+
`tuf.client.updater`s mirror configuration optional (#1153, #1166)
24+
25+
### Fixed
26+
* Ensure file objects and `requests.Responses` are closed during tests (#1147)
27+
328
## v0.14.0
429
### Added
530
* Added a mechanism to the Updater to disable the hash prefix for target files

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.14.0', # If updating version, also update it in tuf/__init__.py
81+
version = '0.15.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.14.0"
5+
__version__ = "0.15.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)