Skip to content

Commit

Permalink
chore: bump vorbis_rs to 0.5.2 for release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTMjugador committed Nov 25, 2023
1 parent 5cf7380 commit 5abfc4e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,19 @@ and this project adheres to

No changes yet.

## [0.5.2] - 2023-11-25

### Fixed

- Corrected an errata in the `libvorbis` patch for the stack overflow fix of
[0.5.1].

## [0.5.1] - 2023-11-25

### Fixed

- `VorbisEncoder::encode_audio_block` no longer causes a stack overflow in
practical scenarios when encoding a large sample buffer. TThis overflow
practical scenarios when encoding a large sample buffer. This overflow
occurred when the available stack space was too small to handle the buffer,
and usually caused segmentation faults.
([#17](https://github.com/ComunidadAylas/vorbis-rs/issues/17), thanks @emoon)
Expand Down Expand Up @@ -106,7 +113,8 @@ No changes yet.

- First public release.

[Unreleased]: https://github.com/ComunidadAylas/vorbis-rs/compare/v0.5.1...HEAD
[Unreleased]: https://github.com/ComunidadAylas/vorbis-rs/compare/v0.5.2...HEAD
[0.5.2]: https://github.com/ComunidadAylas/vorbis-rs/releases/tag/v0.5.2
[0.5.1]: https://github.com/ComunidadAylas/vorbis-rs/releases/tag/v0.5.1
[0.5.0]: https://github.com/ComunidadAylas/vorbis-rs/releases/tag/v0.5.0
[0.4.0]: https://github.com/ComunidadAylas/vorbis-rs/releases/tag/v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion packages/aotuv_lancer_vorbis_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aotuv_lancer_vorbis_sys"
description = "Low-level FFI bindings for libvorbis, vorbisfile, and libvorbisenc C libraries with the aoTuV and Lancer patches"
authors = ["Alejandro González <[email protected]>"]
license = "BSD-3-Clause"
version = "0.1.2"
version = "0.1.3"
readme = "../../README.md"
repository = "https://github.com/ComunidadAylas/vorbis-rs"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions packages/vorbis_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "vorbis_rs"
description = "Ogg Vorbis stream encoding and decoding powered by high-level bindings for best-in-breed C libraries"
authors = ["Alejandro González <[email protected]>"]
license = "BSD-3-Clause"
version = "0.5.1"
version = "0.5.2"
readme = "../../README.md"
repository = "https://github.com/ComunidadAylas/vorbis-rs"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ keywords = ["vorbis", "aotuv", "lancer", "ogg", "xiph"]
categories = ["api-bindings", "multimedia", "multimedia::audio", "multimedia::encoding"]

[dependencies]
aotuv_lancer_vorbis_sys = { version = "0.1.2", path = "../aotuv_lancer_vorbis_sys" }
aotuv_lancer_vorbis_sys = { version = "0.1.3", path = "../aotuv_lancer_vorbis_sys" }
ogg_next_sys = { version = "0.1.2", path = "../ogg_next_sys" }

errno = { version = "0.3.7", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion vendor/vorbis
Submodule vorbis updated 1 files
+2 −1 lib/block.c

0 comments on commit 5abfc4e

Please sign in to comment.