Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit 1ef5376

Browse files
committed
Release 0.8.0
1 parent f401582 commit 1ef5376

File tree

3 files changed

+64
-56
lines changed

3 files changed

+64
-56
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Remodel Changelog
22

33
## Unreleased Changes
4+
5+
## 0.8.0 (2021-04-09)
46
* Ported to rbx-dom v2, which includes full support for binary and XML model files.
57
* Changed all upload commands to upload as binary instead of XML.
68
* Added support for CSRF negotiation to fix asset uploading. ([#25][#25])
79
* Added support for Vector3int16.
810
* Added support for BinaryString values.
9-
* Added :GetDescendants().
11+
* Added Instance:GetDescendants().
1012

1113
[#25]: https://github.com/rojo-rbx/remodel/issues/25
1214

Cargo.lock

+55-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "remodel"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
description = "A tool to read, modify, and write Roblox objects."
55
authors = ["Lucien Greathouse <[email protected]>"]
66
edition = "2018"
@@ -20,17 +20,11 @@ panic = "abort"
2020
panic = "abort"
2121

2222
[dependencies]
23-
rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
24-
rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
25-
rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
26-
rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
27-
rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
28-
29-
# rbx_binary = "0.6.0-alpha.1"
30-
# rbx_dom_weak = "2.0.0-alpha.1"
31-
# rbx_reflection = "4.0.0-alpha.1"
32-
# rbx_reflection_database = "0.1.0"
33-
# rbx_xml = "0.12.0-alpha.1"
23+
rbx_binary = "0.6.0-alpha.4"
24+
rbx_dom_weak = "2.0.0-alpha.1"
25+
rbx_reflection = "4.0.0-alpha.1"
26+
rbx_reflection_database = "0.1.0"
27+
rbx_xml = "0.12.0-alpha.1"
3428

3529
anyhow = "1.0.27"
3630
backtrace = "0.3.45"

0 commit comments

Comments
 (0)