Skip to content

Releases: babycat-io/babycat

Release v0.0.15

17 Feb 23:54
418f7e0
Compare
Choose a tag to compare
Docs: Add `Source` trait on babycat.io homepage example (#91)

Previously the example was throwing a compile error.

Release v0.0.14

03 Jun 03:08
1abf9b9
Compare
Choose a tag to compare
Refactor decoder API to not need a `.begin()` call (#79)

Now our Symphonia and FFmpeg decoder APIs directly
implement the `Source` trait, instead of being
separate structs that create a `Source` with a
call to `.begin()`.

We need to upgrade from a minimum of Rust 1.56 to
Rust 1.58 because this PR uses the
`Option::unwrap_unchecked()` method.
Since we are breaking compatibility, we will
take the opportunity to bump our minimum Rust version
all the way to 1.61.

Release v0.0.13

27 Mar 03:24
25a701d
Compare
Choose a tag to compare
Enable the ability to generate unwrapped NumPy arrays (#67)

This makes it possible to generate NumPy arrays and raise exceptions without allocating a result type.

Release v0.0.12

21 Oct 21:41
8ed40dc
Compare
Choose a tag to compare
Separate batch decoding logic into the `batch` submodule (#42)

Release v0.0.11

24 Sep 01:44
Compare
Choose a tag to compare
rustdoc: Add Babycat logo

Release v0.0.10

22 Sep 00:09
d2cd433
Compare
Choose a tag to compare
Upgrade to Symphonia 0.4.0. Remove Cargo Source Replacement (#32)

This allows us to publish our Babycat crate to crates.io.

Release v0.0.9

18 Sep 03:29
Compare
Choose a tag to compare
Fix the GitHub Action for releasing to PyPI

Release v0.0.7

18 Sep 03:03
Compare
Choose a tag to compare
Avoid vendoring dependencices when running `cargo publish`