Release 7.5.0 (#1033)

This commit is contained in:
Ken Loeffler
2025-04-25 19:46:16 +01:00
committed by GitHub
parent bd2ea42732
commit d935115591
5 changed files with 775 additions and 178 deletions

View File

@@ -1,6 +1,6 @@
# Rojo Changelog
## Unreleased Changes
## 7.5.0 - April 25th, 2025
* Fixed an edge case that caused model pivots to not be built correctly in some cases ([#1027])
* Add `blockedPlaceIds` project config field to allow blocking place ids from being live synced ([#1021])
* Adds support for `.plugin.lua(u)` files - this applies the `Plugin` RunContext. ([#1008])

6
Cargo.lock generated
View File

@@ -1603,9 +1603,9 @@ dependencies = [
[[package]]
name = "rbx_reflection_database"
version = "1.0.0+roblox-666"
version = "1.0.2+roblox-670"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a45b98a2794815736602087cf2fc9d85eb798e7c432d41307336014792768a46"
checksum = "5349b19e5e94fbcaba7a52175263ab64011e0a13f17ff57729f2f560ccdec615"
dependencies = [
"lazy_static",
"rbx_reflection",
@@ -1831,7 +1831,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "7.5.0-prealpha"
version = "7.5.0"
dependencies = [
"anyhow",
"backtrace",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "7.5.0-prealpha"
version = "7.5.0"
rust-version = "1.70.0"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "Enables professional-grade development tools for Roblox developers"
@@ -54,7 +54,7 @@ memofs = { version = "0.3.0", path = "crates/memofs" }
rbx_binary = "1.0.0"
rbx_dom_weak = "3.0.0"
rbx_reflection = "5.0.0"
rbx_reflection_database = "1.0.0"
rbx_reflection_database = "1.0.2"
rbx_xml = "1.0.0"
anyhow = "1.0.80"

View File

@@ -1 +1 @@
7.5.0-prealpha
7.5.0

File diff suppressed because it is too large Load Diff