@quenty/adorneedata 7.12.0 → 7.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
- package/src/Shared/AdorneeData.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.12.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneedata@7.12.0...@quenty/adorneedata@7.12.1) (2024-11-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix aliases ([70af87e](https://github.com/Quenty/NevermoreEngine/commit/70af87e8308937c4df220c871925838783da8b61))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [7.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneedata@7.11.0...@quenty/adorneedata@7.12.0) (2024-11-03)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/adorneedata
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/adorneedata",
|
|
3
|
-
"version": "7.12.
|
|
3
|
+
"version": "7.12.1",
|
|
4
4
|
"description": "Bridges attributes and serialization",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b10790e93b6c4bca4a0271c3d18e125bbff29736"
|
|
41
41
|
}
|
|
@@ -327,7 +327,7 @@ end
|
|
|
327
327
|
AdorneeData.GetAttributes = AdorneeData.Get
|
|
328
328
|
AdorneeData.SetAttributes = AdorneeData.Set
|
|
329
329
|
AdorneeData.CreateAdorneeDataValue = AdorneeData.Create
|
|
330
|
-
AdorneeData.CreateValue = AdorneeData.
|
|
330
|
+
AdorneeData.CreateValue = AdorneeData.Create
|
|
331
331
|
AdorneeData.SetStrictAttributes = AdorneeData.SetStrict
|
|
332
332
|
|
|
333
333
|
--[=[
|
|
@@ -401,4 +401,4 @@ function AdorneeData:_getOrCreateTypeInterfaceList()
|
|
|
401
401
|
return interfaceList
|
|
402
402
|
end
|
|
403
403
|
|
|
404
|
-
return AdorneeData
|
|
404
|
+
return AdorneeData
|