diff --git a/CHANGELOG b/CHANGELOG index e50eeb3..a772137 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +Thu Dec 28 2023 + + Version 2.0 + + * Secondary extension support in subtitles (e.g. subtitle.en.srt). + * New interactive option for changing sub and video area regexes. + * New option to scan for numbers from right-to-left instead of left-to-right. + * Number matching bug fixes. + Sun Oct 10 2023 Version 1.1.1 diff --git a/Cargo.lock b/Cargo.lock index 657fd8e..fd24563 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1092,7 +1092,7 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" [[package]] name = "sub-batch" -version = "2.0.0-beta" +version = "2.0.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 5c51fc6..5b659b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "sub-batch" -version = "2.0.0-beta" +version = "2.0.0" authors = ["Kalle Lindström "] description = "Match and rename subtitle files to video files and perfom other batch operations on subtitle files." homepage = "https://github.com/kl/sub-batch"