Skip to content

Commit fa4fbac

Browse files
committed
Release v1.3.0
1 parent 62684c2 commit fa4fbac

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v1.3.0
2+
> 2024-02-17
3+
4+
## Summary
5+
6+
Mostly dependency updates and an internal refactor on how the automatic detector
7+
works. Now we fetch and parse the [starship](https://starship.rs/) matchers for
8+
their prompt and use those to automatically recognize files, folders and extensions.
9+
10+
### Commits
11+
- [[`62684c2`](https://github.com/sondr3/git-ignore/commit/62684c2)] Fix stray println that could mess up redirecting output
12+
- [[`2a4cdeb`](https://github.com/sondr3/git-ignore/commit/2a4cdeb)] Handle both new and old config existing
13+
- [[`ff6a284`](https://github.com/sondr3/git-ignore/commit/ff6a284)] Update CONTRIBUTING.md
14+
- [[`03503a1`](https://github.com/sondr3/git-ignore/commit/03503a1)] Create detectors at build time
15+
- [[`eba8aa7`](https://github.com/sondr3/git-ignore/commit/eba8aa7)] Warn if using old config path, add migration to init command
16+
- [[`942df26`](https://github.com/sondr3/git-ignore/commit/942df26)] Minor clippy lint fixes
17+
- [[`af01c72`](https://github.com/sondr3/git-ignore/commit/af01c72)] Move away from directories, use etcetera instead
18+
- [[`2a88bc6`](https://github.com/sondr3/git-ignore/commit/2a88bc6)] Bump dependencies
19+
- [[`ad99c31`](https://github.com/sondr3/git-ignore/commit/ad99c31)] Merge Dependabot GA PRs
20+
- [[`c39e4c8`](https://github.com/sondr3/git-ignore/commit/c39e4c8)] Bump actions/upload-artifact from 3 to 4
21+
- [[`1bd59fd`](https://github.com/sondr3/git-ignore/commit/1bd59fd)] Bump actions/download-artifact from 3 to 4
22+
- [[`5b8f177`](https://github.com/sondr3/git-ignore/commit/5b8f177)] Bump webpki from 0.22.0 to 0.22.2
23+
- [[`6c6fddf`](https://github.com/sondr3/git-ignore/commit/6c6fddf)] Bump actions/checkout from 3 to 4
24+
- [[`39b4eac`](https://github.com/sondr3/git-ignore/commit/39b4eac)] Bump bumpalo from 3.11.0 to 3.12.0
25+
- [[`f294e79`](https://github.com/sondr3/git-ignore/commit/f294e79)] Fix clippy lints
26+
- [[`53d424c`](https://github.com/sondr3/git-ignore/commit/53d424c)] Update rust-cache action to v2
27+
128
## v1.2.2
229
> 2022-10-21
330
@@ -216,4 +243,4 @@ www.gitignore.io.
216243
- [[`c7beeb9472`](https://github.com/sondr3/git-ignore/commit/c7beeb9472)] - List all possible templates from gitignore.io
217244
- [[`11d66fcf6f`](https://github.com/sondr3/git-ignore/commit/11d66fcf6f)] - Add a very simple CLI interface
218245
- [[`7c077a87fa`](https://github.com/sondr3/git-ignore/commit/7c077a87fa)] - Forbid the usage of unsafe, fail on warnings and add Travis config
219-
- [[`7a65ce7915`](https://github.com/sondr3/git-ignore/commit/7a65ce7915)] - In the beginning there was darkness...
246+
- [[`7a65ce7915`](https://github.com/sondr3/git-ignore/commit/7a65ce7915)] - In the beginning there was darkness...

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "GPL-3.0-or-later"
99
name = "git-ignore-generator"
1010
readme = "README.md"
1111
repository = "https://github.com/sondr3/git-ignore"
12-
version = "1.2.2"
12+
version = "1.3.0"
1313

1414
[[bin]]
1515
name = "git-ignore"
@@ -20,7 +20,11 @@ lto = "fat"
2020

2121
[dependencies]
2222
anyhow = "1.0.79"
23-
attohttpc = { version = "0.27.0", default-features = false, features = ["json", "compress", "tls-rustls"] }
23+
attohttpc = { version = "0.27.0", default-features = false, features = [
24+
"json",
25+
"compress",
26+
"tls-rustls",
27+
] }
2428
clap = { version = "4.5.0", features = ["derive", "cargo"] }
2529
clap_complete = "4.5.0"
2630
colored = "2.1.0"

0 commit comments

Comments
 (0)