diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 45ca42f..b68e780 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.5" + ".": "0.0.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c37f2..1d3583b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.0.6](https://github.com/flipt-io/ffs/compare/v0.0.5...v0.0.6) (2023-05-02) + + +### Features + +* bundle rules with binary ([#15](https://github.com/flipt-io/ffs/issues/15)) ([af4b6ca](https://github.com/flipt-io/ffs/commit/af4b6cac27c79c6ca2682d83e3691785c8a255c4)) + + +### Bug Fixes + +* off by one error for lines ([98f2ee6](https://github.com/flipt-io/ffs/commit/98f2ee6a53412ce2003351648317359009693927)) + ## [0.0.5](https://github.com/flipt-io/ffs/compare/v0.0.4...v0.0.5) (2023-04-30) diff --git a/Cargo.lock b/Cargo.lock index 8752cf4..ff80629 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "ffs" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index f48caaa..430cfe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ffs" -version = "0.0.5" +version = "0.0.6" description = "A CLI tool to find Flipt feature flags in code" edition = "2021" authors = ["Flipt Dev "]