@quenty/propertyvalue 2.4.0 → 3.0.0-canary.c90a5c7.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,12 +3,9 @@
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
- # [2.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/propertyvalue@2.3.0...@quenty/propertyvalue@2.4.0) (2024-01-08)
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)
7
7
 
8
-
9
- ### Bug Fixes
10
-
11
- * Fix errors in PropertyValue ([ef90f6f](https://github.com/Quenty/NevermoreEngine/commit/ef90f6fdcbe4a362a0dcd66b73baf2e3a0399342))
8
+ **Note:** Version bump only for package @quenty/propertyvalue
12
9
 
13
10
 
14
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/propertyvalue",
3
- "version": "2.4.0",
3
+ "version": "3.0.0-canary.c90a5c7.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": "^8.4.0",
29
- "@quenty/loader": "^7.3.0"
28
+ "@quenty/instanceutils": "9.0.0-canary.c90a5c7.0",
29
+ "@quenty/loader": "8.0.0-canary.c90a5c7.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "075fb03a03f12ade8758f667767ba738204e0c4b"
34
+ "gitHead": "c90a5c74ac7045804ba6018fc3424e406d13f21a"
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(string.format("%q is not a member of PropertyValue", tostring(index)))
44
+ error(("%q is not a member of PropertyValue"):format(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(string.format("%q is not a member of PropertyValue", tostring(index)))
52
+ error(("%q is not a member of PropertyValue"):format(tostring(index)))
53
53
  end
54
54
  end
55
55