Skip to content

Commit b9dfa39

Browse files
committed
changelog edit and version bump
1 parent d531f89 commit b9dfa39

3 files changed

Lines changed: 22 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1+
# v0.3.1
2+
3+
* removed useless trait
4+
* isolated all module functions
5+
16
# v0.3.0
7+
28
* removed claxon dep in favor of flac_codec, same for metaflac
39
* cleaned up code a bit
410

511
# v0.2.6-fix
12+
613
* remembered about changelog.md
714
* fixed incorrect encoded_by tag match
815
* minor code improvements and fixes
916

1017
# v0.1.2
18+
1119
* added better bar incremental logic by passing it to threads
1220
* added graceful shutdown (albeit its a bit slow)
1321
* checks file if it exists before reencoding

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flac-reencoder"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2024"
55
repository = "https://github.com/doujincafe/reencoder/"
66
license = "BSD-3-Clause"
@@ -19,7 +19,7 @@ indicatif = { version = "0.18.0", features = ["improved_unicode"] }
1919
walkdir = "2.5.0"
2020
console = { version = "0.16.0", features = ["windows-console-colors"] }
2121
rusqlite = { version = "0.36.0", default-features = false, features = [
22-
"modern_sqlite",
22+
"modern_sqlite",
2323
] }
2424
ctrlc = "3.4.7"
2525
flac-codec = { version = "1.2.0", features = ["rayon"] }
@@ -31,13 +31,13 @@ linked = ["flac-bound/libflac-nobuild"]
3131

3232
[dev-dependencies]
3333
flac-bound = { version = "0.5.0", default-features = false, features = [
34-
"libflac-nobuild",
34+
"libflac-nobuild",
3535
] }
3636

3737
[target.'cfg(windows)'.dependencies]
3838
rusqlite = { version = "0.36.0", default-features = false, features = [
39-
"bundled-windows",
39+
"bundled-windows",
4040
] }
4141
flac-bound = { version = "0.5.0", default-features = false, features = [
42-
"libflac-noogg",
42+
"libflac-noogg",
4343
] }

0 commit comments

Comments
 (0)