Skip to content

Commit

Permalink
bump to 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Its-Just-Nans committed Dec 23, 2024
1 parent 6d42760 commit 280239f
Show file tree
Hide file tree
Showing 10 changed files with 309 additions and 189 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cargo llvm-cov --html

# generate documentation
mkdir -p dist
cargo doc --no-deps
cargo doc --no-deps --all-features
mv target/doc/* dist/
rm -rf dist/.lock
mv target/llvm-cov/html dist/coverage
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ cargo test <test_name>
## 2024-12-23

- Clippy the code
- - Bump to version `1.0.7`
- Bump to version `1.0.7`
- Change syntaxic sugar
- Change the `Vec<u8>`->`String`->`char` conversion to `[u8; 4]`->`u32` -> `char`
- Bump to version `1.0.8`

## 2024-02-13

Expand Down
104 changes: 53 additions & 51 deletions Cargo.lock

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

9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notox"
version = "1.0.7"
version = "1.0.8"
authors = ["n4n5 <[email protected]>"]
categories = ["command-line-utilities"]
edition = "2021"
Expand All @@ -26,5 +26,8 @@ default = ["serde"]
serde = ["dep:serde", "dep:serde_json"]

[dev-dependencies]
assert_cmd = "2.0.13"
predicates = "3.1.0"
assert_cmd = "2.0.16"
predicates = "3.1.3"

[package.metadata.docs.rs]
all-features = true
Loading

0 comments on commit 280239f

Please sign in to comment.