@quenty/spring 7.0.0 → 7.1.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,6 +3,14 @@
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.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/spring@7.0.0...@quenty/spring@7.1.0) (2023-12-14)
7
+
8
+ **Note:** Version bump only for package @quenty/spring
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/spring@6.4.0...@quenty/spring@7.0.0) (2023-10-11)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/spring
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/spring",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "description": "Spring implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,7 +29,7 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@quenty/loader": "^7.0.0"
32
+ "@quenty/loader": "^7.1.0"
33
33
  },
34
- "gitHead": "fdeae46099587019ec5fc15317dc673aed379400"
34
+ "gitHead": "2c2dbbc0cb2fbb46b4f3270c559c63890fe18b26"
35
35
  }
@@ -183,7 +183,7 @@ function Spring:__index(index)
183
183
  elseif index == "Clock" then
184
184
  return self._clock
185
185
  else
186
- error(("%q is not a valid member of Spring"):format(tostring(index)), 2)
186
+ error(string.format("%q is not a valid member of Spring", tostring(index)), 2)
187
187
  end
188
188
  end
189
189
 
@@ -225,7 +225,7 @@ function Spring:__newindex(index, value)
225
225
  self._clock = value
226
226
  self._time0 = value()
227
227
  else
228
- error(("%q is not a valid member of Spring"):format(tostring(index)), 2)
228
+ error(string.format("%q is not a valid member of Spring", tostring(index)), 2)
229
229
  end
230
230
  end
231
231