Version 0.8.8

This commit is contained in:
Filip Tibell 2024-08-22 21:30:36 +02:00
parent a007fa94a6
commit ff83c401b8
No known key found for this signature in database
6 changed files with 20 additions and 12 deletions

View file

@ -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/), 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). 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 ## `0.8.7` - August 10th, 2024
### Added ### Added

8
Cargo.lock generated
View file

@ -1508,7 +1508,7 @@ dependencies = [
[[package]] [[package]]
name = "lune" name = "lune"
version = "0.8.7" version = "0.8.8"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
@ -1537,7 +1537,7 @@ dependencies = [
[[package]] [[package]]
name = "lune-roblox" name = "lune-roblox"
version = "0.1.3" version = "0.1.4"
dependencies = [ dependencies = [
"glam", "glam",
"lune-utils", "lune-utils",
@ -1554,7 +1554,7 @@ dependencies = [
[[package]] [[package]]
name = "lune-std" name = "lune-std"
version = "0.1.4" version = "0.1.5"
dependencies = [ dependencies = [
"lune-std-datetime", "lune-std-datetime",
"lune-std-fs", "lune-std-fs",
@ -1650,7 +1650,7 @@ dependencies = [
[[package]] [[package]]
name = "lune-std-roblox" name = "lune-std-roblox"
version = "0.1.3" version = "0.1.4"
dependencies = [ dependencies = [
"lune-roblox", "lune-roblox",
"lune-utils", "lune-utils",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "lune-roblox" name = "lune-roblox"
version = "0.1.3" version = "0.1.4"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
repository = "https://github.com/lune-org/lune" repository = "https://github.com/lune-org/lune"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "lune-std-roblox" name = "lune-std-roblox"
version = "0.1.3" version = "0.1.4"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
repository = "https://github.com/lune-org/lune" repository = "https://github.com/lune-org/lune"
@ -20,4 +20,4 @@ once_cell = "1.17"
rbx_cookie = { version = "0.1.4", default-features = false } rbx_cookie = { version = "0.1.4", default-features = false }
lune-utils = { version = "0.1.3", path = "../lune-utils" } 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" }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "lune-std" name = "lune-std"
version = "0.1.4" version = "0.1.5"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
repository = "https://github.com/lune-org/lune" repository = "https://github.com/lune-org/lune"
@ -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-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-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-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-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-stdio = { optional = true, version = "0.1.2", path = "../lune-std-stdio" }
lune-std-task = { optional = true, version = "0.1.2", path = "../lune-std-task" } lune-std-task = { optional = true, version = "0.1.2", path = "../lune-std-task" }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "lune" name = "lune"
version = "0.8.7" version = "0.8.8"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
repository = "https://github.com/lune-org/lune" repository = "https://github.com/lune-org/lune"
@ -71,8 +71,8 @@ reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls", "rustls-tls",
] } ] }
lune-std = { optional = true, version = "0.1.4", path = "../lune-std" } lune-std = { optional = true, version = "0.1.5", path = "../lune-std" }
lune-roblox = { optional = true, version = "0.1.3", path = "../lune-roblox" } lune-roblox = { optional = true, version = "0.1.4", path = "../lune-roblox" }
lune-utils = { version = "0.1.3", path = "../lune-utils" } lune-utils = { version = "0.1.3", path = "../lune-utils" }
### CLI ### CLI