Skip to content

Commit 2421e00

Browse files
committed
Version 0.10.4
1 parent 4c2ef2a commit 2421e00

File tree

16 files changed

+58
-58
lines changed

16 files changed

+58
-58
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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-
## Unreleased
11+
## `0.10.4` - October 14th, 2025
1212

1313
### Added
1414

Cargo.lock

Lines changed: 14 additions & 14 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lune-roblox"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -29,4 +29,4 @@ rbx_reflection = "6.0"
2929
rbx_reflection_database = "2.0"
3030
rbx_xml = "2.0"
3131

32-
lune-utils = { version = "0.3.3", optional = true, path = "../lune-utils" }
32+
lune-utils = { version = "0.3.4", optional = true, path = "../lune-utils" }

crates/lune-std-datetime/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-datetime"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -19,4 +19,4 @@ thiserror = "2.0"
1919
chrono = "0.4.38"
2020
chrono_lc = "0.1.6"
2121

22-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
22+
lune-utils = { version = "0.3.4", path = "../lune-utils" }

crates/lune-std-fs/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-std-fs"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -19,5 +19,5 @@ async-fs = "2.1"
1919
bstr = "1.9"
2020
futures-lite = "2.6"
2121

22-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
23-
lune-std-datetime = { version = "0.3.3", path = "../lune-std-datetime" }
22+
lune-utils = { version = "0.3.4", path = "../lune-utils" }
23+
lune-std-datetime = { version = "0.3.4", path = "../lune-std-datetime" }

crates/lune-std-luau/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-luau"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -15,4 +15,4 @@ workspace = true
1515
[dependencies]
1616
mlua = { version = "0.11.4", features = ["luau", "luau-jit"] }
1717

18-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
18+
lune-utils = { version = "0.3.4", path = "../lune-utils" }

crates/lune-std-net/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-std-net"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -38,5 +38,5 @@ urlencoding = "2.1"
3838
webpki = "0.22"
3939
webpki-roots = "1.0"
4040

41-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
42-
lune-std-serde = { version = "0.3.3", path = "../lune-std-serde" }
41+
lune-utils = { version = "0.3.4", path = "../lune-utils" }
42+
lune-std-serde = { version = "0.3.4", path = "../lune-std-serde" }

crates/lune-std-process/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-process"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -29,4 +29,4 @@ blocking = "1.6"
2929
futures-lite = "2.6"
3030
futures-util = "0.3" # Needed for select! macro...
3131

32-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
32+
lune-utils = { version = "0.3.4", path = "../lune-utils" }

crates/lune-std-regex/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-regex"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -18,4 +18,4 @@ mlua = { version = "0.11.4", features = ["luau"] }
1818
regex = "1.10"
1919
self_cell = "1.0"
2020

21-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
21+
lune-utils = { version = "0.3.4", path = "../lune-utils" }

crates/lune-std-roblox/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-std-roblox"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
edition = "2024"
55
license = "MPL-2.0"
66
repository = "https://github.com/lune-org/lune"
@@ -19,5 +19,5 @@ mlua-luau-scheduler = { version = "0.2.3", path = "../mlua-luau-scheduler" }
1919
rbx_cookie = { version = "0.1.4", default-features = false }
2020
roblox_install = "1.0"
2121

22-
lune-utils = { version = "0.3.3", path = "../lune-utils" }
23-
lune-roblox = { version = "0.3.3", path = "../lune-roblox" }
22+
lune-utils = { version = "0.3.4", path = "../lune-utils" }
23+
lune-roblox = { version = "0.3.4", path = "../lune-roblox" }

0 commit comments

Comments
 (0)