diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c07066e..cf58de6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"7.1.0"} +{".":"7.1.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9478d95..dcae5f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 7.1.1 (2026-01-16) + +## What's Changed +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/conventional_commits_next_version/pull/357 +* chore(deps): update dependency https://github.com/developerc286/template to v1.6.3 by @renovate[bot] in https://github.com/DeveloperC286/conventional_commits_next_version/pull/359 +* chore(deps): update dependency https://github.com/developerc286/template to v1.6.4 by @renovate[bot] in https://github.com/DeveloperC286/conventional_commits_next_version/pull/360 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/conventional_commits_next_version/pull/361 +* chore(deps): update dependency https://github.com/developerc286/template to v1.7.2 by @renovate[bot] in https://github.com/DeveloperC286/conventional_commits_next_version/pull/362 + + +**Full Changelog**: https://github.com/DeveloperC286/conventional_commits_next_version/compare/v7.1.0...v7.1.1 + ## 7.1.0 (2026-01-03) ## What's Changed diff --git a/Cargo.lock b/Cargo.lock index 5c3d8cb..d802c50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "conventional_commits_next_version" -version = "7.1.0" +version = "7.1.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 05879ad..77b941f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "conventional_commits_next_version" -version = "7.1.0" +version = "7.1.1" description = "A tooling and language agnostic utility to calculate the next semantic version based on the Conventional Commits since the prior version. Supports monorepos." authors = ["C "] edition = "2021" diff --git a/README.md b/README.md index db0ece5..18d1ce0 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ conventional-commits-next-version-checking: run: echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT - name: Check current vs expected. run: | - version="v7.1.0" && wget -O - "https://github.com/DeveloperC286/conventional_commits_next_version/releases/download/${version}/x86_64-unknown-linux-gnu.tar.gz" | tar xz --directory "/usr/bin/" + version="v7.1.1" && wget -O - "https://github.com/DeveloperC286/conventional_commits_next_version/releases/download/${version}/x86_64-unknown-linux-gnu.tar.gz" | tar xz --directory "/usr/bin/" conventional_commits_next_version --calculation-mode "Batch" --current-version "${{ steps.current_version.outputs.version }}" --from-version "${{ steps.latest_tag.outputs.tag }}" "${{ steps.latest_tag.outputs.tag }}" ``` @@ -167,7 +167,7 @@ If you do not trust the provided binaries another option is to compile your own ```sh -version="v7.1.0" && wget -O - "https://github.com/DeveloperC286/conventional_commits_next_version/releases/download/${version}/x86_64-unknown-linux-musl.tar.gz" | tar xz --directory "/usr/bin/" +version="v7.1.1" && wget -O - "https://github.com/DeveloperC286/conventional_commits_next_version/releases/download/${version}/x86_64-unknown-linux-musl.tar.gz" | tar xz --directory "/usr/bin/" ``` @@ -186,7 +186,7 @@ E.g. ```sh -cargo install conventional_commits_next_version --version 7.1.0 +cargo install conventional_commits_next_version --version 7.1.1 ```