Skip to content

Commit

Permalink
Release v0.2.1 (#87)
Browse files Browse the repository at this point in the history
* Update docs

* Bump version to 0.2.1

* Update CHANGELOG

* Fixed docs
  • Loading branch information
danixeee authored and renatav committed Dec 19, 2019
1 parent 8c46ef4 commit 52037fe
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning][semver].

## [Unreleased]

### Added

### Changed

### Fixed

## [0.2.1] - 12/19/2019

### Added

Expand Down Expand Up @@ -109,7 +116,8 @@ and this project adheres to [Semantic Versioning][semver].
[keepachangelog]: https://keepachangelog.com/en/1.0.0/
[semver]: https://semver.org/spec/v2.0.0.html

[Unreleased]: https://github.com/openlawlibrary/pygls/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/openlawlibrary/pygls/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/openlawlibrary/taf/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/openlawlibrary/taf/compare/v0.1.8...v0.2.0
[0.1.8]: https://github.com/openlawlibrary/taf/compare/v0.1.7...v0.1.8
[0.1.7]: https://github.com/openlawlibrary/taf/compare/v0.1.6...v0.1.7
Expand Down
18 changes: 18 additions & 0 deletions docs/repo-creation-and-update-util.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,21 @@ taf sign_targets --repo-path E:\OLL\auth_rpeo --keystore E:\OLL\keystore --keyst
If `commit-msg` is specified, changes will be automatically committed, with the commit message being this
argument's value. `scheme` is another optional argument and represents the signature scheme. `rsa-pkcs1v15-sha256`
is used by default.

### `update_expiration_date`

This command updates an expiration date of a given role's metadata file. It is used when a private key (without PEM header and footer) is kept in an environment variable.

```bash
taf update_expiration_date --repo-path ./law --role snapshot --key $SNAPSHOT_KEY --interval 5
```

### `update_expiration_date_keystore`

This command updates an expiration date of a given role's metadata file. It is used when a private key (without PEM header and footer) is kept in a file on a disk (keystore).

```bash
taf update_expiration_date_keystore --repo-path ./law --role timestamp --interval 5
```

After the command is called, user is prompted to enter password used to decrypt the keystore file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

PACKAGE_NAME = "taf"
VERSION = "0.2.0"
VERSION = "0.2.1"
AUTHOR = "Open Law Library"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
Expand Down

0 comments on commit 52037fe

Please sign in to comment.