@quenty/propertyvalue 3.0.0-canary.c90a5c7.0 → 4.0.0

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 CHANGED
@@ -3,7 +3,7 @@
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
- # [3.0.0-canary.c90a5c7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@2.3.0...@quenty/propertyvalue@3.0.0-canary.c90a5c7.0) (2024-01-08)
6
+ # [4.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@3.0.0...@quenty/propertyvalue@4.0.0) (2024-02-13)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/propertyvalue
9
9
 
@@ -11,6 +11,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
+ # [3.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@2.4.0...@quenty/propertyvalue@3.0.0) (2024-01-10)
15
+
16
+ **Note:** Version bump only for package @quenty/propertyvalue
17
+
18
+
19
+
20
+
21
+
22
+ # [2.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@2.3.0...@quenty/propertyvalue@2.4.0) (2024-01-08)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * Fix errors in PropertyValue ([ef90f6f](https://github.com/Quenty/NevermoreEngine/commit/ef90f6fdcbe4a362a0dcd66b73baf2e3a0399342))
28
+
29
+
30
+
31
+
32
+
14
33
  # [2.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@2.2.0...@quenty/propertyvalue@2.3.0) (2023-12-28)
15
34
 
16
35
  **Note:** Version bump only for package @quenty/propertyvalue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/propertyvalue",
3
- "version": "3.0.0-canary.c90a5c7.0",
3
+ "version": "4.0.0",
4
4
  "description": "Property value for Roblox instances",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/instanceutils": "9.0.0-canary.c90a5c7.0",
29
- "@quenty/loader": "8.0.0-canary.c90a5c7.0"
28
+ "@quenty/instanceutils": "^10.0.0",
29
+ "@quenty/loader": "^8.0.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "c90a5c74ac7045804ba6018fc3424e406d13f21a"
34
+ "gitHead": "5736b108e4d23cd4c9e761bbe4cc9fed6fb32dfa"
35
35
  }
@@ -41,7 +41,7 @@ function PropertyValue:__index(index)
41
41
  elseif PropertyValue[index] or index == "_obj" then
42
42
  return PropertyValue[index]
43
43
  else
44
- error(("%q is not a member of PropertyValue"):format(tostring(index)))
44
+ error(string.format("%q is not a member of PropertyValue", tostring(index)))
45
45
  end
46
46
  end
47
47
 
@@ -49,7 +49,7 @@ function PropertyValue:__newindex(index, value)
49
49
  if index == "Value" then
50
50
  self._obj[self._propertyName] = value
51
51
  else
52
- error(("%q is not a member of PropertyValue"):format(tostring(index)))
52
+ error(string.format("%q is not a member of PropertyValue", tostring(index)))
53
53
  end
54
54
  end
55
55