Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.1.6"}
{".":"1.2.0"}
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
version = "1.1.6"
version = "1.2.0"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/DeveloperC286/clean_git_history"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -72,7 +72,7 @@ Visit the releases page at [https://github.com/DeveloperC286/clean_git_history/r

<!-- x-release-please-start-version -->
```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/"
```
<!-- x-release-please-end -->

Expand All @@ -91,7 +91,7 @@ e.g.

<!-- x-release-please-start-version -->
```sh
cargo install clean_git_history --version "1.1.6"
cargo install clean_git_history --version "1.2.0"
```
<!-- x-release-please-end -->

Expand All @@ -102,7 +102,7 @@ You can use the Docker image published to [ghcr.io/developerc286/clean_git_histo

<!-- x-release-please-start-version -->
```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
```
<!-- x-release-please-end -->

Expand Down
Loading