Skip to content

Commit

Permalink
Release 0.1.0 of re_rav1d
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 14, 2024
1 parent a9059f6 commit 4f7cb8c
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 24 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# re_rav1d changelog
Tracks differences since [rav1d 1.0.0](https://crates.io/crates/rav1d/1.0.0)

## re_rav1d 0.1.0
* Add `dav1d-rs` as a Rust API ([upstream PR](https://github.com/memorysafety/rav1d/pull/1364))
* Fix crash on erroneous videos ([upstream PR](https://github.com/memorysafety/rav1d/pull/1362))
* Disable `asm` feature on Linux
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ members = [".", "tools"]
default-members = [".", "tools"]

[package]
name = "rav1d"
name = "re_rav1d"
authors = ["Rav1d Developers", "Prossimo"]
version = "1.0.0"
version = "0.1.0"
edition = "2021"
rust-version = "1.79"
description = "Rust port of the dav1d AV1 decoder"
license = "BSD-2-Clause"
repository = "https://github.com/memorysafety/rav1d"
exclude = ["*.c", "*.h", "*.in", "meson*", "tests/", "doc/", "package/"]
exclude = ["*.c", "*.in", "meson*", "tests/", "doc/", "package/"]

[lib]
path = "lib.rs"
Expand Down
11 changes: 11 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# `re_rav1d` Release Checklist

* [ ] Update `CHANGELOG.md`
* [ ] Bump version numbers
* [ ] `git commit -m 'Release 0.x.0 - summary'`
* [ ] `cargo publish --quiet -p re_rav1d`
* [ ] `git tag -a 0.x.0 -m 'Release 0.x.0 - summary'`
* [ ] `git pull --tags && git tag -d latest && git tag -a latest -m 'Latest release' && git push --tags origin latest --force && git push origin main ; git push --tags ; git push`
* [ ] Do a GitHub release: https://github.com/rerun-io/re_rav1d/releases/new
* [ ] Wait for documentation to build: https://docs.rs/releases/queue
* [ ] Post on Twitter
2 changes: 1 addition & 1 deletion tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "seek_stress"
[dependencies]
cfg-if = "1.0.0"
libc = "0.2"
rav1d = { path = "../", version = "1.0.0", default-features = false }
rav1d = { path = "../", version = "0.1.0", package = "re_rav1d", default-features = false }

[features]
default = [
Expand Down

0 comments on commit 4f7cb8c

Please sign in to comment.