Skip to content

Commit

Permalink
v6.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrossh committed Jun 30, 2023
1 parent 1fb9245 commit 494d979
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-embed"
version = "6.8.0"
version = "6.8.1"
description = "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev"
readme = "readme.md"
documentation = "https://docs.rs/rust-embed"
Expand Down Expand Up @@ -63,8 +63,8 @@ required-features = ["mime-guess"]

[dependencies]
walkdir = "2.3.2"
rust-embed-impl = { version = "6.8.0", path = "impl"}
rust-embed-utils = { version = "7.8.0", path = "utils"}
rust-embed-impl = { version = "6.8.1", path = "impl"}
rust-embed-utils = { version = "7.8.1", path = "utils"}

include-flate = { version = "0.2", optional = true, features = ["stable"] }
actix-web = { version = "4", optional = true }
Expand Down
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

Thanks to [Mark Drobnak](https://github.com/AzureMarker) for the changelog.
## [6.8.1] - 2023-06-30

- Fix failing compilation under compression feature [#182](https://github.com/pyrossh/rust-embed/issues/182). Thanks to [osiewicz](https://github.com/osiewicz)

## [6.8.0] - 2023-06-30

- Update `include-flate` to v0.2 [#211](https://github.com/pyrossh/rust-embed/issues/182)
- Update `include-flate` to v0.2 [#182](https://github.com/pyrossh/rust-embed/issues/182)

## [6.7.0] - 2023-06-09

Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-impl"
version = "6.8.0"
version = "6.8.1"
description = "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev"
readme = "readme.md"
documentation = "https://docs.rs/rust-embed"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can use this to embed your css, js and images into a single executable which

```toml
[dependencies]
rust-embed="6.8.0"
rust-embed="6.8.1"
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-utils"
version = "7.8.0"
version = "7.8.1"
description = "Utilities for rust-embed"
readme = "readme.md"
documentation = "https://docs.rs/rust-embed"
Expand Down

0 comments on commit 494d979

Please sign in to comment.