Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvollmer committed Feb 5, 2023
1 parent 2a27312 commit 66a2477
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Read and write OpenEXR files without any unsafe code"
keywords = ["exr", "openexr", "file", "binary", "io"]
categories = ["encoding", "filesystem", "graphics", "multimedia"]

version = "1.5.2"
version = "1.5.3"
edition = "2018"
authors = ["johannesvollmer <johannes596@t-online.de>"]

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ __What we can do:__
Add this to your `Cargo.toml`:
```toml
[dependencies]
exr = "1.5.2"
exr = "1.5.3"

# also, optionally add this to your crate for smaller binary size
# and better runtime performance
Expand Down Expand Up @@ -195,6 +195,7 @@ fn main() {

// generate (or lookup in your own image)
// an f32 rgb color for each of the 2048x2048 pixels
// (you could also create f16 values here to save disk space)
|x,y| {
(
x as f32 / 2048.0, // red
Expand Down
1 change: 1 addition & 0 deletions examples/0a_write_rgba.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fn main() {

// generate (or lookup in your own image)
// an f32 rgb color for each of the 2048x2048 pixels
// (you could also create f16 values here to save disk space)
|x,y| {
(
x as f32 / 2048.0, // red
Expand Down
6 changes: 1 addition & 5 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ Only the cropping examples use images from the source repository's test folder.

## Older Versions
The examples for any specific `exrs` version can be found on the `docs.rs` page:
- [docs.rs/crate/exr/1.5.3/source/examples/](https://docs.rs/crate/exr/1.5.3/source/examples/)
- [docs.rs/crate/exr/1.5.2/source/examples/](https://docs.rs/crate/exr/1.5.2/source/examples/)
- [docs.rs/crate/exr/1.5.1/source/examples/](https://docs.rs/crate/exr/1.5.1/source/examples/)
- [docs.rs/crate/exr/1.5.0/source/examples/](https://docs.rs/crate/exr/1.5.0/source/examples/)
- [docs.rs/crate/exr/1.4.2/source/examples/](https://docs.rs/crate/exr/1.4.2/source/examples/)
- [docs.rs/crate/exr/1.4.1/source/examples/](https://docs.rs/crate/exr/1.4.1/source/examples/)
- [docs.rs/crate/exr/1.4.0/source/examples/](https://docs.rs/crate/exr/1.4.0/source/examples/)
- [docs.rs/crate/exr/1.3.0/source/examples/](https://docs.rs/crate/exr/1.3.0/source/examples/)
- ...

0 comments on commit 66a2477

Please sign in to comment.