Skip to content

Commit

Permalink
v8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrossh committed Dec 29, 2023
1 parent 786d018 commit ed8faec
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rust-embed"
version = "8.1.0"
version = "8.2.0"
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 @@ -64,8 +64,8 @@ required-features = ["mime-guess"]

[dependencies]
walkdir = "2.3.2"
rust-embed-impl = { version = "8.1.0", path = "impl"}
rust-embed-utils = { version = "8.1.0", path = "utils"}
rust-embed-impl = { version = "8.2.0", path = "impl"}
rust-embed-utils = { version = "8.2.0", path = "utils"}

include-flate = { version = "0.2", optional = true, features = ["stable"] }
actix-web = { version = "4", optional = true }
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

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

## [8.2.0] - 2023-12-29

- Fix naming collisions in macros [#230](https://github.com/pyrossh/rust-embed/pull/230/files). Thanks to [hwittenborn](https://github.com/hwittenborn)

## [8.1.0] - 2023-12-08

- Add created to file metadata. [#225](https://github.com/pyrossh/rust-embed/pull/225/files). Thanks to [ngalaiko](https://github.com/ngalaiko)
Expand Down
4 changes: 2 additions & 2 deletions impl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-impl"
version = "8.1.0"
version = "8.2.0"
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 All @@ -15,7 +15,7 @@ edition = "2018"
proc-macro = true

[dependencies]
rust-embed-utils = { version = "8.1.0", path = "../utils"}
rust-embed-utils = { version = "8.2.0", path = "../utils"}

syn = { version = "2", default-features = false, features = ["derive", "parsing", "proc-macro", "printing"] }
quote = "1"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
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="8.1.0"
rust-embed="8.2.0"
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-utils"
version = "8.1.0"
version = "8.2.0"
description = "Utilities for rust-embed"
readme = "readme.md"
documentation = "https://docs.rs/rust-embed"
Expand Down

0 comments on commit ed8faec

Please sign in to comment.