Skip to content

Commit

Permalink
Version 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Aug 22, 2024
1 parent a007fa9 commit ff83c40
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## `0.8.8` - August 22nd, 2024

### Fixed

- Fixed errors when deserializing `Lighting.AttributesSerialize` by updating `rbx-dom` dependencies ([#245])

[#245]: https://github.com/lune-org/lune/pull/245

## `0.8.7` - August 10th, 2024

### Added
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/lune-roblox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lune-roblox"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
Expand Down
4 changes: 2 additions & 2 deletions crates/lune-std-roblox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lune-std-roblox"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
Expand All @@ -20,4 +20,4 @@ once_cell = "1.17"
rbx_cookie = { version = "0.1.4", default-features = false }

lune-utils = { version = "0.1.3", path = "../lune-utils" }
lune-roblox = { version = "0.1.3", path = "../lune-roblox" }
lune-roblox = { version = "0.1.4", path = "../lune-roblox" }
4 changes: 2 additions & 2 deletions crates/lune-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lune-std"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
Expand Down Expand Up @@ -53,7 +53,7 @@ lune-std-luau = { optional = true, version = "0.1.2", path = "../lune-std-luau"
lune-std-net = { optional = true, version = "0.1.2", path = "../lune-std-net" }
lune-std-process = { optional = true, version = "0.1.3", path = "../lune-std-process" }
lune-std-regex = { optional = true, version = "0.1.2", path = "../lune-std-regex" }
lune-std-roblox = { optional = true, version = "0.1.3", path = "../lune-std-roblox" }
lune-std-roblox = { optional = true, version = "0.1.4", path = "../lune-std-roblox" }
lune-std-serde = { optional = true, version = "0.1.2", path = "../lune-std-serde" }
lune-std-stdio = { optional = true, version = "0.1.2", path = "../lune-std-stdio" }
lune-std-task = { optional = true, version = "0.1.2", path = "../lune-std-task" }
6 changes: 3 additions & 3 deletions crates/lune/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lune"
version = "0.8.7"
version = "0.8.8"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
Expand Down Expand Up @@ -71,8 +71,8 @@ reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }

lune-std = { optional = true, version = "0.1.4", path = "../lune-std" }
lune-roblox = { optional = true, version = "0.1.3", path = "../lune-roblox" }
lune-std = { optional = true, version = "0.1.5", path = "../lune-std" }
lune-roblox = { optional = true, version = "0.1.4", path = "../lune-roblox" }
lune-utils = { version = "0.1.3", path = "../lune-utils" }

### CLI
Expand Down

0 comments on commit ff83c40

Please sign in to comment.