diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a9de278..49a1c07 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.1.6"} +{".":"1.2.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6779e11..55452b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 1.2.0 (2026-02-11) + +## What's Changed +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/425 +* chore(deps): update dependency https://github.com/developerc286/template to v1.6.3 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/428 +* feat: add output CLI argument with enum for format control by @DeveloperC286 in https://github.com/DeveloperC286/clean_git_history/pull/375 +* chore(deps): update dependency https://github.com/developerc286/template to v1.6.4 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/429 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/430 +* chore(deps): update dependency https://github.com/developerc286/template to v1.7.2 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/432 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/433 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/434 +* chore(deps): update rust crate clap to v4.5.55 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/435 +* chore(deps): update alpine docker tag to v3.23.3 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/436 +* chore(deps): update rust crate clap to v4.5.56 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/437 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/438 +* chore(deps): update rust crate clap to v4.5.57 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/440 +* chore(deps): update rust crate git2 to v0.20.4 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/439 +* chore(deps): update rust crate anyhow to v1.0.101 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/441 +* chore(deps): update nix flake lock by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/442 +* chore(deps): update rust crate clap to v4.5.58 by @renovate[bot] in https://github.com/DeveloperC286/clean_git_history/pull/443 + + +**Full Changelog**: https://github.com/DeveloperC286/clean_git_history/compare/v1.1.6...v1.2.0 + ## 1.1.6 (2026-01-03) ## What's Changed diff --git a/Cargo.lock b/Cargo.lock index 37b4ace..8905747 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -142,7 +142,7 @@ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" [[package]] name = "clean_git_history" -version = "1.1.6" +version = "1.2.0" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 63955b2..591ec90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "clean_git_history" description = "A Git history linter to ensure it stays clean for those who prefer rebasing and fast-forwarding compared to merge and squash commits." authors = ["C "] -version = "1.1.6" +version = "1.2.0" edition = "2021" license = "AGPL-3.0" repository = "https://github.com/DeveloperC286/clean_git_history" diff --git a/README.md b/README.md index 61d0288..5eac0d8 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ jobs: name: Clean runs-on: ubuntu-latest container: - image: ghcr.io/developerc286/clean_git_history:v1.1.6 + image: ghcr.io/developerc286/clean_git_history:v1.2.0 steps: - name: Checkout code. uses: actions/checkout@v5 @@ -57,7 +57,7 @@ jobs: ```yaml clean-git-history-checking: stage: clean-git-history-checking - image: ghcr.io/developerc286/clean_git_history:v1.1.6 + image: ghcr.io/developerc286/clean_git_history:v1.2.0 script: - clean_git_history "origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}" rules: @@ -72,7 +72,7 @@ Visit the releases page at [https://github.com/DeveloperC286/clean_git_history/r ```sh -version="v1.1.6" && wget -O - "https://github.com/DeveloperC286/clean_git_history/releases/download/${version}/x86_64-unknown-linux-musl.tar.gz" | tar xz --directory "/usr/bin/" +version="v1.2.0" && wget -O - "https://github.com/DeveloperC286/clean_git_history/releases/download/${version}/x86_64-unknown-linux-musl.tar.gz" | tar xz --directory "/usr/bin/" ``` @@ -91,7 +91,7 @@ e.g. ```sh -cargo install clean_git_history --version "1.1.6" +cargo install clean_git_history --version "1.2.0" ``` @@ -102,7 +102,7 @@ You can use the Docker image published to [ghcr.io/developerc286/clean_git_histo ```sh -docker run --rm -v $(pwd):/workspace -w /workspace ghcr.io/developerc286/clean_git_history:v1.1.6 origin/HEAD +docker run --rm -v $(pwd):/workspace -w /workspace ghcr.io/developerc286/clean_git_history:v1.2.0 origin/HEAD ```