diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3cf4d51..1a2d0c0d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.1" + ".": "0.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fb2b4c02..8af7719d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.13.0](https://github.com/launchdarkly/ldcli/compare/v0.12.1...v0.13.0) (2024-05-14) + + +### Features + +* track setup completed ([#272](https://github.com/launchdarkly/ldcli/issues/272)) ([6554b7d](https://github.com/launchdarkly/ldcli/commit/6554b7d5ca29c59ca089b755b8a925d7065cfca7)) + + +### Bug Fixes + +* add back member invite alias ([#276](https://github.com/launchdarkly/ldcli/issues/276)) ([a5d0a8c](https://github.com/launchdarkly/ldcli/commit/a5d0a8c032d57d1e685edc52ad22feafa41ff6b3)) +* Fix typo in README ([#278](https://github.com/launchdarkly/ldcli/issues/278)) ([6404aa0](https://github.com/launchdarkly/ldcli/commit/6404aa05b5bd875e5116b880d1629536a6489bde)) +* fix viewport ([#280](https://github.com/launchdarkly/ldcli/issues/280)) ([d079561](https://github.com/launchdarkly/ldcli/commit/d079561f63b284da9025611eb74a06c36cc41e8e)) +* remove bad template func ([#275](https://github.com/launchdarkly/ldcli/issues/275)) ([5de0112](https://github.com/launchdarkly/ldcli/commit/5de0112cb21d0662c9c58a0bc41ea41623f6a7eb)) +* toggle flag aliases ([#269](https://github.com/launchdarkly/ldcli/issues/269)) ([76de2a5](https://github.com/launchdarkly/ldcli/commit/76de2a5f85e84dcaf2e64e27820c85205aebf650)) +* update usage template to only show flags when present ([#273](https://github.com/launchdarkly/ldcli/issues/273)) ([68e6b5c](https://github.com/launchdarkly/ldcli/commit/68e6b5ce6684075b07ae7958f375eeed3ce29780)) + ## [0.12.1](https://github.com/launchdarkly/ldcli/compare/v0.12.0...v0.12.1) (2024-05-10) diff --git a/PROVENANCE.md b/PROVENANCE.md index f4a1d63b..85d83485 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -5,7 +5,7 @@ LaunchDarkly uses the [SLSA framework](https://slsa.dev/spec/v1.0/about) (Supply As part of [SLSA requirements for level 3 compliance](https://slsa.dev/spec/v1.0/requirements), LaunchDarkly publishes provenance about our package builds using [GitHub's generic SLSA3 provenance generator](https://github.com/slsa-framework/slsa-github-generator/blob/main/internal/builders/generic/README.md#generation-of-slsa3-provenance-for-arbitrary-projects) for distribution alongside our packages. -These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_0.12.1_multiple_provenance.intoto.jsonl`. +These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_0.13.0_multiple_provenance.intoto.jsonl`. To verify SLSA provenance attestations, we recommend using [slsa-verifier](https://github.com/slsa-framework/slsa-verifier). Example usage for verifying packages for Linux is included below: @@ -13,7 +13,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the PACKAGE to verify -PACKAGE_VERSION=0.12.1 +PACKAGE_VERSION=0.13.0 ``` diff --git a/package.json b/package.json index ec6ae673..7cc58e16 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@launchdarkly/ldcli", "description": "The official command line interface for managing LaunchDarkly feature flags.", - "version": "0.12.1", + "version": "0.13.0", "main": "index.js", "scripts": { "postinstall": "go-npm install",