diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9f3c914..9bc82d3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.19" + ".": "0.0.20" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e3c59a..7e64e53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.20](https://github.com/flipt-io/ffs/compare/v0.0.19...v0.0.20) (2023-09-12) + + +### Features + +* support Typescript ([#65](https://github.com/flipt-io/ffs/issues/65)) ([2d99a5f](https://github.com/flipt-io/ffs/commit/2d99a5fa31ccc93990457545ad4134650f75d164)) + ## [0.0.19](https://github.com/flipt-io/ffs/compare/v0.0.18...v0.0.19) (2023-09-12) diff --git a/Cargo.lock b/Cargo.lock index c4f3b08..be35af1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "ffs" -version = "0.0.19" +version = "0.0.20" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c9dd52e..415aa95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ffs" -version = "0.0.19" +version = "0.0.20" description = "A CLI tool to find Flipt feature flags in code" edition = "2021" authors = ["Flipt Dev "]