From ed8faec32e3d17f115e768ec14e731ac2f237720 Mon Sep 17 00:00:00 2001 From: pyrossh Date: Fri, 29 Dec 2023 14:35:10 +0530 Subject: [PATCH] v8.2.0 --- Cargo.toml | 6 +++--- changelog.md | 4 ++++ impl/Cargo.toml | 4 ++-- readme.md | 2 +- utils/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 725b455..31a2d08 100644 --- a/Cargo.toml +++ b/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" @@ -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 } diff --git a/changelog.md b/changelog.md index 440f9c2..b24af7a 100644 --- a/changelog.md +++ b/changelog.md @@ -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) diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 4e75cb5..4811df2 100644 --- a/impl/Cargo.toml +++ b/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" @@ -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" diff --git a/readme.md b/readme.md index 4461ca0..f193aee 100644 --- a/readme.md +++ b/readme.md @@ -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 diff --git a/utils/Cargo.toml b/utils/Cargo.toml index b4741dc..57f37fb 100644 --- a/utils/Cargo.toml +++ b/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"