tina4ruby 3.13.118 → 3.13.119
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/lib/tina4/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af7514098ead4805ac18f09d61f1e816ed27dd28b0a37162f4f579ffea87ecca
|
|
4
|
+
data.tar.gz: b6742dd30606e26f5d473bf3768dbd68a33286f1f95934aaa63720069d0a0430
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb0d3ba8a09a83d1d207e716ebc97a79e7d142ccfeaaa5c862fa59ba338df98af9f1114d696c2dc7f15f144a63b2f0896607d317b0bf7b49332f01c1a02e56d1
|
|
7
|
+
data.tar.gz: d86833f86c8e9a90a1510140486b2688d6df712b5d3db281f5dd57d1a6bea02bf4a73a63a5bb03b8f0078fd27b6d3d57ee1cf88eab7679eeb820c95846d2dc32
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,34 @@ number means the same thing everywhere.
|
|
|
6
6
|
**The authoritative release notes for every shipped version live in the documentation:**
|
|
7
7
|
https://tina4.com/ruby/36-releases
|
|
8
8
|
|
|
9
|
+
## 3.13.119
|
|
10
|
+
|
|
11
|
+
Skill repair by @MichaelC8E (#44, merged as c1b8c43d5) plus a
|
|
12
|
+
small CLAUDE.md footer bump that the 3.13.118 release worker missed.
|
|
13
|
+
|
|
14
|
+
### Skill file repairs (#44)
|
|
15
|
+
|
|
16
|
+
Three defects fixed across the three skill trees this repo carries
|
|
17
|
+
(`.claude/skills/`, `.agents/skills/`, `.cursor/skills/`):
|
|
18
|
+
|
|
19
|
+
- The Codex and Cursor copies of `tina4-maintainer` were UTF-8-with-BOM
|
|
20
|
+
with both em dashes replaced by the cp1252 round-trip
|
|
21
|
+
`c3 a2 e2 82 ac e2 80 9d`. Corruption sat inside the `description`
|
|
22
|
+
frontmatter (the text that decides when a skill triggers), and the
|
|
23
|
+
BOM sat in front of the opening `---` (which some frontmatter
|
|
24
|
+
parsers reject outright). All eight tracked copies across the
|
|
25
|
+
language ports were byte-identical, so every diff-based check
|
|
26
|
+
reported them clean.
|
|
27
|
+
- Two shared files had gone stale against canonical in tina4-python.
|
|
28
|
+
- The Codex and Cursor copies of `tina4-developer-ruby` were around
|
|
29
|
+
60 lines behind `.claude`, and shipped none of the seven
|
|
30
|
+
`references/` files their own SKILL.md cites.
|
|
31
|
+
|
|
32
|
+
Parity: tina4-python 3.13.119 and tina4-nodejs 3.13.119 are
|
|
33
|
+
version-parity bumps. tina4-php 3.13.119 ships @MichaelC8E's
|
|
34
|
+
skill-repair PR (tina4-php#205), @cwvermaak-codeinfinity's Messenger
|
|
35
|
+
fix (tina4-php#204), and my ImportHelper autoload non-throw fix.
|
|
36
|
+
|
|
9
37
|
## 3.13.118
|
|
10
38
|
|
|
11
39
|
Version-parity bump. No framework code changes in Ruby for this
|
data/lib/tina4/version.rb
CHANGED