@quenty/lipsum 14.5.2-canary.497.496fc5b.0 → 14.5.2

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
- ## [14.5.2-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/lipsum@14.5.1...@quenty/lipsum@14.5.2-canary.497.496fc5b.0) (2024-09-20)
6
+ ## [14.5.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/lipsum@14.5.1...@quenty/lipsum@14.5.2) (2024-09-22)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/lipsum
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/lipsum",
3
- "version": "14.5.2-canary.497.496fc5b.0",
3
+ "version": "14.5.2",
4
4
  "description": "A Lorem Ipsum generator in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,17 +27,17 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/loader": "10.4.1-canary.497.496fc5b.0",
31
- "@quenty/randomutils": "6.4.1-canary.497.496fc5b.0",
32
- "@quenty/string": "3.2.0"
30
+ "@quenty/loader": "^10.4.0",
31
+ "@quenty/randomutils": "^6.4.0",
32
+ "@quenty/string": "^3.2.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@quenty/maid": "3.3.0",
36
- "@quenty/textserviceutils": "13.5.2-canary.497.496fc5b.0",
37
- "@quenty/uiobjectutils": "6.4.2-canary.497.496fc5b.0"
35
+ "@quenty/maid": "^3.3.0",
36
+ "@quenty/textserviceutils": "^13.5.2",
37
+ "@quenty/uiobjectutils": "^6.4.1"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
42
+ "gitHead": "1cd1ee70499c9c4a52465d2e5125732b8a10cb27"
43
43
  }
@@ -49,7 +49,7 @@ function LipsumUtils.username(random)
49
49
  if number <= 0.1 then
50
50
  return "xXx" .. RandomUtils.choice(WORDS) .. "xXx"
51
51
  elseif number <= 0.6 then
52
- return string.format("%s%03d", word, random:NextInteger(0, 999))
52
+ return ("%s%03d"):format(word, random:NextInteger(0, 999))
53
53
  else
54
54
  return word
55
55
  end