Skip to content

Commit 60f7dde

Browse files
committed
release: 0.3.5
2 parents cf72711 + c7d1e10 commit 60f7dde

File tree

5 files changed

+17
-20
lines changed

5 files changed

+17
-20
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

33

4+
5+
## [0.3.5](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.5) - 2024-02-08
6+
7+
### Changed
8+
9+
* Bump `dactyl` to `0.7`
10+
11+
12+
413
## [0.3.4](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.4) - 2023-11-24
514

615
### Changed

CREDITS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Project Dependencies
22
Package: cdtoc
3-
Version: 0.3.4
4-
Generated: 2023-11-25 02:24:16 UTC
3+
Version: 0.3.5
4+
Generated: 2024-02-08 18:21:51 UTC
55

66
| Package | Version | Author(s) | License |
77
| ---- | ---- | ---- | ---- |
88
| [block-buffer](https://github.com/RustCrypto/utils) | 0.10.4 | RustCrypto Developers | Apache-2.0 or MIT |
99
| [cfg-if](https://github.com/alexcrichton/cfg-if) | 1.0.0 | [Alex Crichton](mailto:alex@alexcrichton.com) | Apache-2.0 or MIT |
1010
| [crypto-common](https://github.com/RustCrypto/traits) | 0.1.6 | RustCrypto Developers | Apache-2.0 or MIT |
11-
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.6.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
11+
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
1212
| [digest](https://github.com/RustCrypto/traits) | 0.10.7 | RustCrypto Developers | Apache-2.0 or MIT |
1313
| [faster-hex](https://github.com/NervosFoundation/faster-hex) | 0.9.0 | [zhangsoledad](mailto:787953403@qq.com) | MIT |
1414
| [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 |
15-
| [itoa](https://github.com/dtolnay/itoa) | 1.0.9 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT |
15+
| [itoa](https://github.com/dtolnay/itoa) | 1.0.10 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT |
1616
| [sha1](https://github.com/RustCrypto/hashes) | 0.10.6 | RustCrypto Developers | Apache-2.0 or MIT |
1717
| [trimothy](https://github.com/Blobfolio/trimothy) | 0.2.2 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
1818
| [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 |

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cdtoc"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["Blobfolio, LLC. <hello@blobfolio.com>"]
55
edition = "2021"
66
rust-version = "1.70"
@@ -34,7 +34,7 @@ brunch = "0.5.*"
3434
serde_json = "1.0.*"
3535

3636
[dependencies]
37-
dactyl = "0.6.0"
37+
dactyl = "0.7.*"
3838
trimothy = "0.2.*"
3939

4040
[dependencies.faster-hex]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ default-features = false
7777

7878
## License
7979

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

8282
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.
8383

justfile

+1-13
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ bench BENCH="":
3131
if [ -z "{{ BENCH }}" ]; then
3232
cargo bench \
3333
--benches \
34-
--target x86_64-unknown-linux-gnu \
3534
--target-dir "{{ cargo_dir }}"
3635
else
3736
cargo bench \
3837
--bench "{{ BENCH }}" \
39-
--target x86_64-unknown-linux-gnu \
4038
--target-dir "{{ cargo_dir }}"
4139
fi
4240
exit 0
@@ -60,7 +58,6 @@ bench BENCH="":
6058
cargo clippy \
6159
--release \
6260
--all-features \
63-
--target x86_64-unknown-linux-gnu \
6461
--target-dir "{{ cargo_dir }}"
6562

6663

@@ -79,14 +76,13 @@ bench BENCH="":
7976
cargo +nightly rustdoc \
8077
--release \
8178
--all-features \
82-
--target x86_64-unknown-linux-gnu \
8379
--target-dir "{{ cargo_dir }}" \
8480
-- \
8581
--cfg docsrs
8682

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

9288

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

10196
cargo test \
10297
--release \
103-
--target x86_64-unknown-linux-gnu \
10498
--target-dir "{{ cargo_dir }}"
10599

106100
echo ""
107101
fyi task "Testing w/ No Features"
108102
cargo test \
109103
--no-default-features \
110-
--target x86_64-unknown-linux-gnu \
111104
--target-dir "{{ cargo_dir }}"
112105

113106
cargo test \
114107
--release \
115108
--no-default-features \
116-
--target x86_64-unknown-linux-gnu \
117109
--target-dir "{{ cargo_dir }}"
118110

119111
echo ""
120112
fyi task "Testing w/ All Features"
121113
cargo test \
122114
--all-features \
123115
--no-default-features \
124-
--target x86_64-unknown-linux-gnu \
125116
--target-dir "{{ cargo_dir }}"
126117

127118
cargo test \
128119
--release \
129120
--all-features \
130121
--no-default-features \
131-
--target x86_64-unknown-linux-gnu \
132122
--target-dir "{{ cargo_dir }}"
133123

134124
just _test accuraterip
@@ -144,14 +134,12 @@ bench BENCH="":
144134
cargo test \
145135
--no-default-features \
146136
--features {{ FEATURES }} \
147-
--target x86_64-unknown-linux-gnu \
148137
--target-dir "{{ cargo_dir }}"
149138

150139
cargo test \
151140
--release \
152141
--no-default-features \
153142
--features {{ FEATURES }} \
154-
--target x86_64-unknown-linux-gnu \
155143
--target-dir "{{ cargo_dir }}"
156144

157145

0 commit comments

Comments
 (0)