Bump version to 0.4.3

This commit is contained in:
Ruud van Asseldonk 2020-08-09 12:05:40 +02:00
parent f4d2444d4c
commit 2f053855d5
4 changed files with 24 additions and 5 deletions

2
Cargo.lock generated
View File

@ -10,7 +10,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "claxon"
version = "0.4.2"
version = "0.4.3"
dependencies = [
"hound 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"mp4parse 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "claxon"
version = "0.4.2"
version = "0.4.3"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
description = "A FLAC decoding library"
keywords = ["flac", "lossless", "audio", "codec"]
@ -12,7 +12,7 @@ repository = "https://github.com/ruuda/claxon"
documentation = "https://docs.rs/claxon"
[badges]
travis-ci = { repository = "ruuda/claxon", branch = "v0.4.2" }
travis-ci = { repository = "ruuda/claxon", branch = "v0.4.3" }
[dev-dependencies]
hound = "3.0"

View File

@ -1,6 +1,23 @@
Changelog
=========
0.4.3
-----
Released 2020-08-09.
**Compatibility**:
- No breaking changes
- Compatible with Rust 1.13 through 1.46.
New features:
- `metadata::Tags` now implements `ExactSizeIterator`.
- Skip empty Vorbis comments that would previously cause a parse error.
Thanks to har0ke and Anthony Mikh for contributing to this release.
0.4.2 and 0.3.3
---------------

6
fuzz/Cargo.lock generated
View File

@ -1,3 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "arbitrary"
version = "0.1.1"
@ -10,13 +12,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "claxon"
version = "0.4.2"
version = "0.4.3"
[[package]]
name = "claxon-fuzz"
version = "0.0.1"
dependencies = [
"claxon 0.4.2",
"claxon 0.4.3",
"libfuzzer-sys 0.1.0 (git+https://github.com/rust-fuzz/libfuzzer-sys.git)",
]