diff --git a/CHANGELOG.md b/CHANGELOG.md index d522e37..8fe4b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## [0.3.0](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.0) - 2023-10-03 + +### New + +* `AccurateRip::DRIVE_OFFSET_URL` +* `AccurateRip::parse_drive_offsets` + + + ## [0.2.3](https://github.com/Blobfolio/cdtoc/releases/tag/v0.2.3) - 2023-09-27 ### New diff --git a/CREDITS.md b/CREDITS.md index a0b995b..ef4d97c 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -1,7 +1,7 @@ # Project Dependencies Package: cdtoc - Version: 0.2.3 - Generated: 2023-09-28 06:05:20 UTC + Version: 0.3.0 + Generated: 2023-10-04 01:50:41 UTC | Package | Version | Author(s) | License | | ---- | ---- | ---- | ---- | diff --git a/Cargo.toml b/Cargo.toml index 6fa8997..1f6a1d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdtoc" -version = "0.2.3" +version = "0.3.0" authors = ["Blobfolio, LLC. "] edition = "2021" rust-version = "1.70" diff --git a/README.md b/README.md index 2d50dad..ea330a3 100644 --- a/README.md +++ b/README.md @@ -62,14 +62,14 @@ Add `cdtoc` to your `dependencies` in `Cargo.toml`, like: ```toml [dependencies] -cdtoc = "0.2.*" +cdtoc = "0.3.*" ``` The disc ID helpers require additional dependencies, so if you aren't using them, be sure to disable the default features (adding back any you _do_ want) to skip the overhead. ```toml [dependencies.cdtoc] -version = "0.2.*" +version = "0.3.*" default-features = false ``` diff --git a/src/lib.rs b/src/lib.rs index a91f0cf..261794e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,14 +63,14 @@ Add `cdtoc` to your `dependencies` in `Cargo.toml`, like: ```ignore,toml [dependencies] -cdtoc = "0.2.*" +cdtoc = "0.3.*" ``` The disc ID helpers require additional dependencies, so if you aren't using them, be sure to disable the default features (adding back any you _do_ want) to skip the overhead. ```ignore,toml [dependencies.cdtoc] -version = "0.2.*" +version = "0.3.*" default-features = false ``` */