@quenty/rotatinglabel 11.10.1 → 11.11.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
+ # [11.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rotatinglabel@11.10.1...@quenty/rotatinglabel@11.11.0) (2026-01-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add luau typing to a variety of classes ([0271856](https://github.com/Quenty/NevermoreEngine/commit/0271856de02cc28c1d1d512c43bd6adeeaa41587))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [11.10.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rotatinglabel@11.10.0...@quenty/rotatinglabel@11.10.1) (2026-01-12)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rotatinglabel",
3
- "version": "11.10.1",
3
+ "version": "11.11.0",
4
4
  "description": "A text label with most general properties of a textlabel, except when text is set, it rotates uniformly like an old clock, animating in a satisfying way",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "55f4a7407de7247aceea574de4d2f57dab70cb91"
38
+ "gitHead": "8d2e7927e4399b4297a04d474d29bdd85692051d"
39
39
  }
@@ -23,7 +23,7 @@ function RotatingCharacterBuilder:WithTemplate(TextLabelTemplate)
23
23
  return self
24
24
  end
25
25
 
26
- function RotatingCharacterBuilder:Generate(Parent)
26
+ function RotatingCharacterBuilder:Generate(Parent: Instance)
27
27
  local Template = self.TextLabelTemplate or error("Must set TextLabelTemplate")
28
28
 
29
29
  local container = Instance.new("Frame")