Skip to content

Commit cbc2b18

Browse files
Peter JohnPeter John
Peter John
authored and
Peter John
committed
release v8.6.0
1 parent 769f661 commit cbc2b18

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-embed"
3-
version = "8.5.0"
3+
version = "8.6.0"
44
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"
55
readme = "readme.md"
66
documentation = "https://docs.rs/rust-embed"
@@ -64,8 +64,8 @@ required-features = ["mime-guess"]
6464

6565
[dependencies]
6666
walkdir = "2.3.2"
67-
rust-embed-impl = { version = "8.4.0", path = "impl"}
68-
rust-embed-utils = { version = "8.4.0", path = "utils"}
67+
rust-embed-impl = { version = "8.6.0", path = "impl"}
68+
rust-embed-utils = { version = "8.6.0", path = "utils"}
6969

7070
include-flate = { version = "0.3", optional = true }
7171
actix-web = { version = "4", optional = true }

changelog.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
Thanks to [Mark Drobnak](https://github.com/AzureMarker) for the changelog.
99

10+
## [8.6.0] - 2025-02-25
11+
12+
- Update include-flate to 0.3 [#246](https://github.com/pyrossh/rust-embed/pull/246). Thanks to [krant](https://github.com/krant)
13+
- refactor: remove redundant reference and closure [#250](https://github.com/pyrossh/rust-embed/pull/250). Thanks to [hamirmahal](https://github.com/hamirmahal)
14+
- refactor: replace map().unwrap_or_else(). [#250](https://github.com/pyrossh/rust-embed/pull/255). Thanks to [hamirmahal](https://github.com/hamirmahal)
15+
- Compatible with Axum 0.7.9 [#253](https://github.com/pyrossh/rust-embed/pull/253). Thanks to [wkmyws](https://github.com/wkmyws)
16+
- Add allow_missing option to derive macro [#256](https://github.com/pyrossh/rust-embed/pull/256). Thanks to [lirannl](https://github.com/lirannl)
17+
18+
1019
## [8.5.0] - 2024-07-09
1120

12-
- Re-export RustEmbed as Embed [#246](https://github.com/pyrossh/rust-embed/pull/246). Thanks to [krant](https://github.com/krant)
1321
- Allow users to specify a custom path to the rust_embed crate in generated code[#232](https://github.com/pyrossh/rust-embed/pull/232). Thanks to [Wulf](https://github.com/Wulf)
1422
- Increase minimum rust-version to v1.7.0.0
1523

impl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-embed-impl"
3-
version = "8.5.0"
3+
version = "8.6.0"
44
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"
55
readme = "readme.md"
66
documentation = "https://docs.rs/rust-embed"
@@ -15,7 +15,7 @@ edition = "2018"
1515
proc-macro = true
1616

1717
[dependencies]
18-
rust-embed-utils = { version = "8.4.0", path = "../utils"}
18+
rust-embed-utils = { version = "8.6.0", path = "../utils"}
1919

2020
syn = { version = "2", default-features = false, features = ["derive", "parsing", "proc-macro", "printing"] }
2121
quote = "1"

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use this to embed your css, js and images into a single executable which
1414

1515
```toml
1616
[dependencies]
17-
rust-embed="8.5.0"
17+
rust-embed="8.6.0"
1818
```
1919

2020
## Documentation

utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-embed-utils"
3-
version = "8.5.0"
3+
version = "8.6.0"
44
description = "Utilities for rust-embed"
55
readme = "readme.md"
66
documentation = "https://docs.rs/rust-embed"

0 commit comments

Comments
 (0)