-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
94 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,39 @@ | ||
# Changelog | ||
|
||
## 0.0.2 | ||
|
||
### Enhancements | ||
|
||
- Add `pre-commit self update` ([#68](https://github.com/j178/pre-commit-rs/pull/68)) | ||
- Auto install uv ([#66](https://github.com/j178/pre-commit-rs/pull/66)) | ||
- Generate shell completion ([#20](https://github.com/j178/pre-commit-rs/pull/20)) | ||
- Implement `pre-commit clean` ([#24](https://github.com/j178/pre-commit-rs/pull/24)) | ||
- Implement `pre-commit install` ([#28](https://github.com/j178/pre-commit-rs/pull/28)) | ||
- Implement `pre-commit sample-config` ([#37](https://github.com/j178/pre-commit-rs/pull/37)) | ||
- Implement `pre-commit uninstall` ([#36](https://github.com/j178/pre-commit-rs/pull/36)) | ||
- Implement `pre-commit validate-config` ([#25](https://github.com/j178/pre-commit-rs/pull/25)) | ||
- Implement `pre-commit validate-manifest` ([#26](https://github.com/j178/pre-commit-rs/pull/26)) | ||
- Implement basic `pre-commit hook-impl` ([#63](https://github.com/j178/pre-commit-rs/pull/63)) | ||
- Partition filenames and delegate to multiple subprocesses ([#7](https://github.com/j178/pre-commit-rs/pull/7)) | ||
- Refactor xargs ([#8](https://github.com/j178/pre-commit-rs/pull/8)) | ||
- Skip empty config argument ([#64](https://github.com/j178/pre-commit-rs/pull/64)) | ||
- Use `fancy-regex` ([#62](https://github.com/j178/pre-commit-rs/pull/62)) | ||
- feat: add fail language support ([#60](https://github.com/j178/pre-commit-rs/pull/60)) | ||
|
||
### Bug Fixes | ||
|
||
- Fix stage operate_on_files ([#65](https://github.com/j178/pre-commit-rs/pull/65)) | ||
# Changelog | ||
|
||
## 0.0.3 | ||
|
||
### Bug fixes | ||
|
||
- Check uv installed after acquired lock ([#72](https://github.com/j178/pre-commit-rs/pull/72)) | ||
|
||
### Other changes | ||
|
||
- Add copyright of the original pre-commit to LICENSE ([#74](https://github.com/j178/pre-commit-rs/pull/74)) | ||
- Add profiler ([#71](https://github.com/j178/pre-commit-rs/pull/71)) | ||
- Publish to PyPI ([#70](https://github.com/j178/pre-commit-rs/pull/70)) | ||
- Publish to crates.io ([#75](https://github.com/j178/pre-commit-rs/pull/75)) | ||
- Rename pypi package to `pre-commit-rusty` ([#76](https://github.com/j178/pre-commit-rs/pull/76)) | ||
|
||
## 0.0.2 | ||
|
||
### Enhancements | ||
|
||
- Add `pre-commit self update` ([#68](https://github.com/j178/pre-commit-rs/pull/68)) | ||
- Auto install uv ([#66](https://github.com/j178/pre-commit-rs/pull/66)) | ||
- Generate shell completion ([#20](https://github.com/j178/pre-commit-rs/pull/20)) | ||
- Implement `pre-commit clean` ([#24](https://github.com/j178/pre-commit-rs/pull/24)) | ||
- Implement `pre-commit install` ([#28](https://github.com/j178/pre-commit-rs/pull/28)) | ||
- Implement `pre-commit sample-config` ([#37](https://github.com/j178/pre-commit-rs/pull/37)) | ||
- Implement `pre-commit uninstall` ([#36](https://github.com/j178/pre-commit-rs/pull/36)) | ||
- Implement `pre-commit validate-config` ([#25](https://github.com/j178/pre-commit-rs/pull/25)) | ||
- Implement `pre-commit validate-manifest` ([#26](https://github.com/j178/pre-commit-rs/pull/26)) | ||
- Implement basic `pre-commit hook-impl` ([#63](https://github.com/j178/pre-commit-rs/pull/63)) | ||
- Partition filenames and delegate to multiple subprocesses ([#7](https://github.com/j178/pre-commit-rs/pull/7)) | ||
- Refactor xargs ([#8](https://github.com/j178/pre-commit-rs/pull/8)) | ||
- Skip empty config argument ([#64](https://github.com/j178/pre-commit-rs/pull/64)) | ||
- Use `fancy-regex` ([#62](https://github.com/j178/pre-commit-rs/pull/62)) | ||
- feat: add fail language support ([#60](https://github.com/j178/pre-commit-rs/pull/60)) | ||
|
||
### Bug Fixes | ||
|
||
- Fix stage operate_on_files ([#65](https://github.com/j178/pre-commit-rs/pull/65)) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pre-commit-rs" | ||
version = "0.0.2" | ||
version = "0.0.3" | ||
authors = ["j178 <[email protected]>"] | ||
description = "pre-commit implemeneted in Rust" | ||
repository = "https://github.com/j178/pre-commit-rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
[project] | ||
name = "pre-commit-rusty" | ||
version = "0.0.2" | ||
description = "pre-commit reimplemented in Rust" | ||
authors = [{ name = "j178", email = "[email protected]" }] | ||
requires-python = ">=3.8" | ||
keywords = [ "pre-commit", "git", "hooks" ] | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
classfiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Rust", | ||
"Topic :: Software Development :: Quality Assurance" | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/j178/pre-commit-rs" | ||
Changelog = "https://github.com/j178/pre-commit-rs/blob/main/CHANGELOG.md" | ||
Releases = "https://github.com/j178/pre-commit-rs/releases" | ||
|
||
[build-system] | ||
requires = ["maturin>=1.0,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[tool.maturin] | ||
bindings = "bin" | ||
|
||
[tool.rooster] | ||
version_tag_prefix = "v" | ||
major_labels = [] # We do not use the major version number yet | ||
minor_labels = ["breaking"] | ||
changelog_ignore_labels = ["internal", "ci", "testing"] | ||
changelog_sections.breaking = "Breaking changes" | ||
changelog_sections.enhancement = "Enhancements" | ||
changelog_sections.compatibility = "Enhancements" | ||
changelog_sections.performance = "Performance" | ||
changelog_sections.bug = "Bug fixes" | ||
changelog_sections.documentation = "Documentation" | ||
changelog_sections.__unknown__ = "Other changes" | ||
changelog_contributors = true | ||
|
||
version_files = [ | ||
"README.md", | ||
"Cargo.toml", | ||
] | ||
[project] | ||
name = "pre-commit-rusty" | ||
version = "0.0.3" | ||
description = "pre-commit reimplemented in Rust" | ||
authors = [{ name = "j178", email = "[email protected]" }] | ||
requires-python = ">=3.8" | ||
keywords = [ "pre-commit", "git", "hooks" ] | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
classfiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Rust", | ||
"Topic :: Software Development :: Quality Assurance" | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/j178/pre-commit-rs" | ||
Changelog = "https://github.com/j178/pre-commit-rs/blob/main/CHANGELOG.md" | ||
Releases = "https://github.com/j178/pre-commit-rs/releases" | ||
|
||
[build-system] | ||
requires = ["maturin>=1.0,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[tool.maturin] | ||
bindings = "bin" | ||
|
||
[tool.rooster] | ||
version_tag_prefix = "v" | ||
major_labels = [] # We do not use the major version number yet | ||
minor_labels = ["breaking"] | ||
changelog_ignore_labels = ["internal", "ci", "testing"] | ||
changelog_sections.breaking = "Breaking changes" | ||
changelog_sections.enhancement = "Enhancements" | ||
changelog_sections.compatibility = "Enhancements" | ||
changelog_sections.performance = "Performance" | ||
changelog_sections.bug = "Bug fixes" | ||
changelog_sections.documentation = "Documentation" | ||
changelog_sections.__unknown__ = "Other changes" | ||
changelog_contributors = true | ||
|
||
version_files = [ | ||
"README.md", | ||
"Cargo.toml", | ||
] |
Empty file.