Skip to content

Commit baa8e73

Browse files
author
pyrossh
committed
v8.3.0
1 parent 02469a4 commit baa8e73

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
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.2.0"
3+
version = "8.3.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.2.0", path = "impl"}
68-
rust-embed-utils = { version = "8.2.0", path = "utils"}
67+
rust-embed-impl = { version = "8.3.0", path = "impl"}
68+
rust-embed-utils = { version = "8.3.0", path = "utils"}
6969

7070
include-flate = { version = "0.2", optional = true, features = ["stable"] }
7171
actix-web = { version = "4", optional = true }

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ 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.3.0] - 2024-02-26
11+
12+
- Fix symbolic links in debug builds [#230](https://github.com/pyrossh/rust-embed/pull/235/files). Thanks to [Buckram123](https://github.com/Buckram123)
13+
1014
## [8.2.0] - 2023-12-29
1115

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

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.2.0"
3+
version = "8.3.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.2.0", path = "../utils"}
18+
rust-embed-utils = { version = "8.3.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
@@ -8,7 +8,7 @@ You can use this to embed your css, js and images into a single executable which
88

99
```toml
1010
[dependencies]
11-
rust-embed="8.2.0"
11+
rust-embed="8.3.0"
1212
```
1313

1414
## 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.2.0"
3+
version = "8.3.0"
44
description = "Utilities for rust-embed"
55
readme = "readme.md"
66
documentation = "https://docs.rs/rust-embed"

0 commit comments

Comments
 (0)