Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Feb 17, 2024
1 parent 62684c2 commit fa4fbac
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## v1.3.0
> 2024-02-17
## Summary

Mostly dependency updates and an internal refactor on how the automatic detector
works. Now we fetch and parse the [starship](https://starship.rs/) matchers for
their prompt and use those to automatically recognize files, folders and extensions.

### Commits
- [[`62684c2`](https://github.com/sondr3/git-ignore/commit/62684c2)] Fix stray println that could mess up redirecting output
- [[`2a4cdeb`](https://github.com/sondr3/git-ignore/commit/2a4cdeb)] Handle both new and old config existing
- [[`ff6a284`](https://github.com/sondr3/git-ignore/commit/ff6a284)] Update CONTRIBUTING.md
- [[`03503a1`](https://github.com/sondr3/git-ignore/commit/03503a1)] Create detectors at build time
- [[`eba8aa7`](https://github.com/sondr3/git-ignore/commit/eba8aa7)] Warn if using old config path, add migration to init command
- [[`942df26`](https://github.com/sondr3/git-ignore/commit/942df26)] Minor clippy lint fixes
- [[`af01c72`](https://github.com/sondr3/git-ignore/commit/af01c72)] Move away from directories, use etcetera instead
- [[`2a88bc6`](https://github.com/sondr3/git-ignore/commit/2a88bc6)] Bump dependencies
- [[`ad99c31`](https://github.com/sondr3/git-ignore/commit/ad99c31)] Merge Dependabot GA PRs
- [[`c39e4c8`](https://github.com/sondr3/git-ignore/commit/c39e4c8)] Bump actions/upload-artifact from 3 to 4
- [[`1bd59fd`](https://github.com/sondr3/git-ignore/commit/1bd59fd)] Bump actions/download-artifact from 3 to 4
- [[`5b8f177`](https://github.com/sondr3/git-ignore/commit/5b8f177)] Bump webpki from 0.22.0 to 0.22.2
- [[`6c6fddf`](https://github.com/sondr3/git-ignore/commit/6c6fddf)] Bump actions/checkout from 3 to 4
- [[`39b4eac`](https://github.com/sondr3/git-ignore/commit/39b4eac)] Bump bumpalo from 3.11.0 to 3.12.0
- [[`f294e79`](https://github.com/sondr3/git-ignore/commit/f294e79)] Fix clippy lints
- [[`53d424c`](https://github.com/sondr3/git-ignore/commit/53d424c)] Update rust-cache action to v2

## v1.2.2
> 2022-10-21
Expand Down Expand Up @@ -216,4 +243,4 @@ www.gitignore.io.
- [[`c7beeb9472`](https://github.com/sondr3/git-ignore/commit/c7beeb9472)] - List all possible templates from gitignore.io
- [[`11d66fcf6f`](https://github.com/sondr3/git-ignore/commit/11d66fcf6f)] - Add a very simple CLI interface
- [[`7c077a87fa`](https://github.com/sondr3/git-ignore/commit/7c077a87fa)] - Forbid the usage of unsafe, fail on warnings and add Travis config
- [[`7a65ce7915`](https://github.com/sondr3/git-ignore/commit/7a65ce7915)] - In the beginning there was darkness...
- [[`7a65ce7915`](https://github.com/sondr3/git-ignore/commit/7a65ce7915)] - In the beginning there was darkness...
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.

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "GPL-3.0-or-later"
name = "git-ignore-generator"
readme = "README.md"
repository = "https://github.com/sondr3/git-ignore"
version = "1.2.2"
version = "1.3.0"

[[bin]]
name = "git-ignore"
Expand All @@ -20,7 +20,11 @@ lto = "fat"

[dependencies]
anyhow = "1.0.79"
attohttpc = { version = "0.27.0", default-features = false, features = ["json", "compress", "tls-rustls"] }
attohttpc = { version = "0.27.0", default-features = false, features = [
"json",
"compress",
"tls-rustls",
] }
clap = { version = "4.5.0", features = ["derive", "cargo"] }
clap_complete = "4.5.0"
colored = "2.1.0"
Expand Down

0 comments on commit fa4fbac

Please sign in to comment.