@quenty/lipsum 6.2.1 → 6.3.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,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
+ # [6.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/lipsum@6.2.1...@quenty/lipsum@6.3.0) (2022-07-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * LipsumUtils gsus l with 1 correctly ([c1b349d](https://github.com/Quenty/NevermoreEngine/commit/c1b349d4fc58dd9330810a328eeef5c1665bbb5d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/lipsum@6.2.0...@quenty/lipsum@6.2.1) (2022-07-19)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/lipsum
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/lipsum",
3
- "version": "6.2.1",
3
+ "version": "6.3.0",
4
4
  "description": "A Lorem Ipsum generator in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,12 +32,12 @@
32
32
  "@quenty/string": "^2.3.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@quenty/maid": "^2.3.0",
36
- "@quenty/textserviceutils": "^5.2.1",
35
+ "@quenty/maid": "^2.4.0",
36
+ "@quenty/textserviceutils": "^5.3.0",
37
37
  "@quenty/uiobjectutils": "^2.1.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "67bd6a4f1957c3727c208d23c564c5757de6d7c8"
42
+ "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
43
43
  }
@@ -41,7 +41,7 @@ function LipsumUtils.username(random)
41
41
  word = word:gsub("i", "1")
42
42
  end
43
43
  if random:NextNumber() <= 0.75 then
44
- word = word:gsub("i", "1")
44
+ word = word:gsub("l", "1")
45
45
  end
46
46
  end
47
47