Skip to content

Commit

Permalink
release: 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Feb 8, 2024
2 parents cf72711 + c7d1e10 commit 60f7dde
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 20 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog



## [0.3.5](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.5) - 2024-02-08

### Changed

* Bump `dactyl` to `0.7`



## [0.3.4](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.4) - 2023-11-24

### Changed
Expand Down
8 changes: 4 additions & 4 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Project Dependencies
Package: cdtoc
Version: 0.3.4
Generated: 2023-11-25 02:24:16 UTC
Version: 0.3.5
Generated: 2024-02-08 18:21:51 UTC

| Package | Version | Author(s) | License |
| ---- | ---- | ---- | ---- |
| [block-buffer](https://github.com/RustCrypto/utils) | 0.10.4 | RustCrypto Developers | Apache-2.0 or MIT |
| [cfg-if](https://github.com/alexcrichton/cfg-if) | 1.0.0 | [Alex Crichton](mailto:alex@alexcrichton.com) | Apache-2.0 or MIT |
| [crypto-common](https://github.com/RustCrypto/traits) | 0.1.6 | RustCrypto Developers | Apache-2.0 or MIT |
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.6.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
| [digest](https://github.com/RustCrypto/traits) | 0.10.7 | RustCrypto Developers | Apache-2.0 or MIT |
| [faster-hex](https://github.com/NervosFoundation/faster-hex) | 0.9.0 | [zhangsoledad](mailto:787953403@qq.com) | MIT |
| [generic-array](https://github.com/fizyk20/generic-array.git) | 0.14.7 | [Bartłomiej Kamiński](mailto:fizyk20@gmail.com) and [Aaron Trent](mailto:novacrazy@gmail.com) | MIT |
| [itoa](https://github.com/dtolnay/itoa) | 1.0.9 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT |
| [itoa](https://github.com/dtolnay/itoa) | 1.0.10 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT |
| [sha1](https://github.com/RustCrypto/hashes) | 0.10.6 | RustCrypto Developers | Apache-2.0 or MIT |
| [trimothy](https://github.com/Blobfolio/trimothy) | 0.2.2 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
| [typenum](https://github.com/paholg/typenum) | 1.17.0 | [Paho Lurie-Gregg](mailto:paho@paholg.com) and [Andre Bogus](mailto:bogusandre@gmail.com) | Apache-2.0 or MIT |
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cdtoc"
version = "0.3.4"
version = "0.3.5"
authors = ["Blobfolio, LLC. <hello@blobfolio.com>"]
edition = "2021"
rust-version = "1.70"
Expand Down Expand Up @@ -34,7 +34,7 @@ brunch = "0.5.*"
serde_json = "1.0.*"

[dependencies]
dactyl = "0.6.0"
dactyl = "0.7.*"
trimothy = "0.2.*"

[dependencies.faster-hex]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ default-features = false

## License

Copyright © 2023 [Blobfolio, LLC](https://blobfolio.com) &lt;hello@blobfolio.com&gt;
Copyright © 2024 [Blobfolio, LLC](https://blobfolio.com) &lt;hello@blobfolio.com&gt;

This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2.

Expand Down
14 changes: 1 addition & 13 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ bench BENCH="":
if [ -z "{{ BENCH }}" ]; then
cargo bench \
--benches \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"
else
cargo bench \
--bench "{{ BENCH }}" \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"
fi
exit 0
Expand All @@ -60,7 +58,6 @@ bench BENCH="":
cargo clippy \
--release \
--all-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"


Expand All @@ -79,14 +76,13 @@ bench BENCH="":
cargo +nightly rustdoc \
--release \
--all-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}" \
-- \
--cfg docsrs

# Move the docs and clean up ownership.
[ ! -d "{{ doc_dir }}" ] || rm -rf "{{ doc_dir }}"
mv "{{ cargo_dir }}/x86_64-unknown-linux-gnu/doc" "{{ justfile_directory() }}"
mv "{{ cargo_dir }}/doc" "{{ justfile_directory() }}"
just _fix-chown "{{ doc_dir }}"


Expand All @@ -95,40 +91,34 @@ bench BENCH="":
clear
fyi task "Testing w/ Default Features"
cargo test \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--release \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

echo ""
fyi task "Testing w/ No Features"
cargo test \
--no-default-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--release \
--no-default-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

echo ""
fyi task "Testing w/ All Features"
cargo test \
--all-features \
--no-default-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--release \
--all-features \
--no-default-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

just _test accuraterip
Expand All @@ -144,14 +134,12 @@ bench BENCH="":
cargo test \
--no-default-features \
--features {{ FEATURES }} \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--release \
--no-default-features \
--features {{ FEATURES }} \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"


Expand Down

0 comments on commit 60f7dde

Please sign in to comment.