Skip to content

Commit 0a3d809

Browse files
authored
prep 1.2.0 (#146)
Signed-off-by: William Woodruff <william@trailofbits.com>
1 parent 07dcc12 commit 0a3d809

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [1.2.0]
10+
911
### Added
1012

1113
* Added support for GitLab CI/CD ([#123](https://github.com/di/id/pull/123))
14+
* Added support for CircleCI ([#144](https://github.com/di/id/pull/144))
15+
16+
### Changed
17+
18+
* The minimum supported Python version is now 3.8 ([#141](https://github.com/di/id/pull/141))
1219

1320
## [1.1.0]
1421

@@ -29,6 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2936
* Initial split from https://github.com/sigstore/sigstore-python
3037

3138
<!--Release URLs -->
32-
[Unreleased]: https://github.com/di/id/compare/v1.0.0...HEAD
39+
[Unreleased]: https://github.com/di/id/compare/v1.2.0...HEAD
40+
[1.2.0]: https://github.com/di/id/compare/v1.1.0...v1.2.0
3341
[1.1.0]: https://github.com/di/id/compare/v1.0.0...v1.1.0
3442
[1.0.0]: https://github.com/di/id/compare/v1.0.0a2...v1.0.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ environment is found but `detect_credential` fails to retrieve a token, it raise
7474
* and more
7575
* [Buildkite](https://buildkite.com/docs/agent/v3/cli-oidc)
7676
* [GitLab](https://docs.gitlab.com/ee/ci/secrets/id_token_authentication.html) (See _environment variables_ below)
77+
* [CircleCI](https://circleci.com/docs/oidc-tokens-with-custom-claims/)
7778

7879
### Tokens in environment variables
7980

id/__init__.py

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

2121
from typing import Callable, List, Optional
2222

23-
__version__ = "1.1.0"
23+
__version__ = "1.2.0"
2424

2525

2626
class IdentityError(Exception):

0 commit comments

Comments
 (0)