summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjakka <jakka@jakka.su>2025-09-30 17:10:19 +0300
committerjakka <jakka@jakka.su>2025-09-30 17:10:19 +0300
commitb9dfa39e4d72ce8e454bf8ac1449e6436e9bec4a (patch)
treeedba2042b74f25fe2ed9ef9bfcf0426d04b33dc7
parentd531f8909d3ee47ea11a7a0dc60ea70819c16032 (diff)
changelog edit and version bumpv0.3.1
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.lock18
-rw-r--r--Cargo.toml10
3 files changed, 22 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0fd6aea..bf8e6c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,21 @@
+# v0.3.1
+
+* removed useless trait
+* isolated all module functions
+
# v0.3.0
+
* removed claxon dep in favor of flac_codec, same for metaflac
* cleaned up code a bit
# v0.2.6-fix
+
* remembered about changelog.md
* fixed incorrect encoded_by tag match
* minor code improvements and fixes
# v0.1.2
+
* added better bar incremental logic by passing it to threads
* added graceful shutdown (albeit its a bit slow)
* checks file if it exists before reencoding
diff --git a/Cargo.lock b/Cargo.lock
index e52de08..17eae1b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -19,9 +19,9 @@ dependencies = [
[[package]]
name = "anstyle"
-version = "1.0.11"
+version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
+checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
[[package]]
name = "anstyle-parse"
@@ -296,7 +296,7 @@ dependencies = [
[[package]]
name = "flac-reencoder"
-version = "0.3.0"
+version = "0.3.1"
dependencies = [
"anyhow",
"clap",
@@ -484,9 +484,9 @@ dependencies = [
[[package]]
name = "quote"
-version = "1.0.40"
+version = "1.0.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
+checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
dependencies = [
"proc-macro2",
]
@@ -582,18 +582,18 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "2.0.16"
+version = "2.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
+checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "2.0.16"
+version = "2.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
+checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 9a93d47..160981e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "flac-reencoder"
-version = "0.3.0"
+version = "0.3.1"
edition = "2024"
repository = "https://github.com/doujincafe/reencoder/"
license = "BSD-3-Clause"
@@ -19,7 +19,7 @@ indicatif = { version = "0.18.0", features = ["improved_unicode"] }
walkdir = "2.5.0"
console = { version = "0.16.0", features = ["windows-console-colors"] }
rusqlite = { version = "0.36.0", default-features = false, features = [
- "modern_sqlite",
+ "modern_sqlite",
] }
ctrlc = "3.4.7"
flac-codec = { version = "1.2.0", features = ["rayon"] }
@@ -31,13 +31,13 @@ linked = ["flac-bound/libflac-nobuild"]
[dev-dependencies]
flac-bound = { version = "0.5.0", default-features = false, features = [
- "libflac-nobuild",
+ "libflac-nobuild",
] }
[target.'cfg(windows)'.dependencies]
rusqlite = { version = "0.36.0", default-features = false, features = [
- "bundled-windows",
+ "bundled-windows",
] }
flac-bound = { version = "0.5.0", default-features = false, features = [
- "libflac-noogg",
+ "libflac-noogg",
] }