Skip to content

Commit ff83c40

Browse files
committed
Version 0.8.8
1 parent a007fa9 commit ff83c40

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ All notable changes to this project will be documented in this file.
88
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010

11+
## `0.8.8` - August 22nd, 2024
12+
13+
### Fixed
14+
15+
- Fixed errors when deserializing `Lighting.AttributesSerialize` by updating `rbx-dom` dependencies ([#245])
16+
17+
[#245]: https://github.com/lune-org/lune/pull/245
18+
1119
## `0.8.7` - August 10th, 2024
1220

1321
### Added

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/lune-roblox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lune-roblox"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"

crates/lune-std-roblox/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lune-std-roblox"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -20,4 +20,4 @@ once_cell = "1.17"
2020
rbx_cookie = { version = "0.1.4", default-features = false }
2121

2222
lune-utils = { version = "0.1.3", path = "../lune-utils" }
23-
lune-roblox = { version = "0.1.3", path = "../lune-roblox" }
23+
lune-roblox = { version = "0.1.4", path = "../lune-roblox" }

crates/lune-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lune-std"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -53,7 +53,7 @@ lune-std-luau = { optional = true, version = "0.1.2", path = "../lune-std-luau"
5353
lune-std-net = { optional = true, version = "0.1.2", path = "../lune-std-net" }
5454
lune-std-process = { optional = true, version = "0.1.3", path = "../lune-std-process" }
5555
lune-std-regex = { optional = true, version = "0.1.2", path = "../lune-std-regex" }
56-
lune-std-roblox = { optional = true, version = "0.1.3", path = "../lune-std-roblox" }
56+
lune-std-roblox = { optional = true, version = "0.1.4", path = "../lune-std-roblox" }
5757
lune-std-serde = { optional = true, version = "0.1.2", path = "../lune-std-serde" }
5858
lune-std-stdio = { optional = true, version = "0.1.2", path = "../lune-std-stdio" }
5959
lune-std-task = { optional = true, version = "0.1.2", path = "../lune-std-task" }

crates/lune/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lune"
3-
version = "0.8.7"
3+
version = "0.8.8"
44
edition = "2021"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -71,8 +71,8 @@ reqwest = { version = "0.11", default-features = false, features = [
7171
"rustls-tls",
7272
] }
7373

74-
lune-std = { optional = true, version = "0.1.4", path = "../lune-std" }
75-
lune-roblox = { optional = true, version = "0.1.3", path = "../lune-roblox" }
74+
lune-std = { optional = true, version = "0.1.5", path = "../lune-std" }
75+
lune-roblox = { optional = true, version = "0.1.4", path = "../lune-roblox" }
7676
lune-utils = { version = "0.1.3", path = "../lune-utils" }
7777

7878
### CLI

0 commit comments

Comments
 (0)