Skip to content

Commit

Permalink
Bump version to 0.0.4 (#97)
Browse files Browse the repository at this point in the history
* Bump version to 0.0.4

* Fix
  • Loading branch information
j178 authored Nov 21, 2024
1 parent 5384ab1 commit d617786
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 23 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.0.4

### Enhancements

- Improve subprocess trace and error output ([#92](https://github.com/j178/pre-commit-rs/pull/92))
- Stash working tree before running hooks ([#96](https://github.com/j178/pre-commit-rs/pull/96))
- Add color to command trace ([#94](https://github.com/j178/pre-commit-rs/pull/94))
- Improve hook output display ([#79](https://github.com/j178/pre-commit-rs/pull/79))
- Improve uv installation ([#78](https://github.com/j178/pre-commit-rs/pull/78))
- Support docker language ([#67](https://github.com/j178/pre-commit-rs/pull/67))

## 0.0.3

### Bug fixes
Expand Down
36 changes: 18 additions & 18 deletions 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
@@ -1,6 +1,6 @@
[package]
name = "pre-commit-rs"
version = "0.0.3"
version = "0.0.4"
authors = ["j178 <[email protected]>"]
description = "pre-commit implemeneted in Rust"
repository = "https://github.com/j178/pre-commit-rs"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ It aims to be a drop-in replacement for the original tool while also providing s

```console
# On Linux and macOS
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/pre-commit-rs/releases/download/v0.0.3/pre-commit-rs-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/pre-commit-rs/releases/download/v0.0.4/pre-commit-rs-installer.sh | sh

# On Windows
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/pre-commit-rs/releases/download/v0.0.3/pre-commit-rs-installer.ps1 | iex"
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/pre-commit-rs/releases/download/v0.0.4/pre-commit-rs-installer.ps1 | iex"
```

### PyPI
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pre-commit-rusty"
version = "0.0.3"
version = "0.0.4"
description = "pre-commit reimplemented in Rust"
authors = [{ name = "j178", email = "[email protected]" }]
requires-python = ">=3.8"
Expand Down Expand Up @@ -29,7 +29,7 @@ build-backend = "maturin"
[tool.maturin]
bindings = "bin"
include = [
{ path = "licenses/*", format = ["whell", "sdist"]}
{ path = "licenses/*", format = ["wheel", "sdist"]}
]

[tool.rooster]
Expand Down

0 comments on commit d617786

Please sign in to comment.