Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
SalOne22 committed Dec 18, 2023
1 parent ec2dabb commit a6df524
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Bug report
description: Create a report to help us improve
title: '[Bug]: <title>'
labels: ['bug']
title: "[Bug]: <title>"
labels: ["bug"]
body:
- type: checkboxes
attributes:
Expand All @@ -28,7 +28,8 @@ body:
label: Library Version
description: Specify the version of the library where you encountered the issue
options:
- 0.9.1 (latest)
- 0.10.0 (latest)
- 0.9.1
- 0.9.0
- 0.8.2
- 0.8.1
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to the Rimage library will be documented in this file.

## v0.10.0

### Breaking Changes

- Replaced `image` module: Now re-exporting the [`image`](https://crates.io/crates/image) crate, which may affect existing functionalities.
- Refactored Decoder and Encoder: Changes in method signatures and behavior could potentially break existing code.

### New features

- Added support for musl targets
- Added support for wasm targets (emscripten and wasi)
- Added full support for all features on windows i686 (x86) and x86_64 targets

### Changes

- Changed codec for jxl compression. Shifted to support only lossless compression for improved efficiency and portability.
- Integration with image crate: Refactored Decoder and Encoder modules to utilize the image crate, enhancing functionality.

### Additional Notes

- Dependencies Update: Adjusted dependencies to align with new implementations and removed outdated ones.

## [v0.9.1](https://github.com/SalOne22/rimage/releases/tag/v0.9.1)

### New features
Expand Down
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 @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
name = "rimage"
readme = "README.md"
repository = "https://github.com/SalOne22/rimage"
version = "0.9.1"
version = "0.10.0"
edition = "2021"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Or add this to your `Cargo.toml`:

```toml
[dependencies]
rimage = "0.9.1"
rimage = "0.10.0"
```

## Library Usage
Expand Down

0 comments on commit a6df524

Please sign in to comment.