turbo-themes 0.22.1 → 0.23.1
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 +16 -0
- data/README.md +5 -3
- data/lib/turbo-themes/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: 1bf723ed40659574225bc1aaa2f84ad094c01e07d54f8a0075330b3d84298061
|
|
4
|
+
data.tar.gz: 43cce798d3f513f4b118624e41a81fe493ea4f4399f6b1344731e2c19c267e14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f90d1231e71fe811c0b1be861bc27bffeaf1003ef6cb2d42709267715e7e2f688e60f240782c26f8e487c00a4853a2d8358f73d810df95b64224a7ac042c3d20
|
|
7
|
+
data.tar.gz: fb65452bc55824e6fe7d6d6e29c3a4e39085fd28c6ad6da2ae1dba390fe7b37dc185127bb5e6df9f373818fe55abd4f740bf324961f3dba68549d1b6c236cce1
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,22 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
|
|
|
10
10
|
|
|
11
11
|
- TBD
|
|
12
12
|
|
|
13
|
+
## [0.23.1] - 2026-07-17
|
|
14
|
+
|
|
15
|
+
### 🔧 Changed
|
|
16
|
+
|
|
17
|
+
- recommend uv for Python installation (#554)
|
|
18
|
+
|
|
19
|
+
## [0.23.0] - 2026-07-17
|
|
20
|
+
|
|
21
|
+
### ✨ Added
|
|
22
|
+
|
|
23
|
+
- run action-pinning validation on every PR and merge queue run (#560)
|
|
24
|
+
|
|
25
|
+
### 🐛 Fixed
|
|
26
|
+
|
|
27
|
+
- pin setup-node comments to exact v6.4.0 (#548)
|
|
28
|
+
|
|
13
29
|
## [0.22.1] - 2026-07-17
|
|
14
30
|
|
|
15
31
|
### 🔧 Changed
|
data/README.md
CHANGED
|
@@ -57,7 +57,7 @@ projects:
|
|
|
57
57
|
| Platform | Package Manager | Install Command |
|
|
58
58
|
| ------------------------- | --------------- | ------------------------------------------------- |
|
|
59
59
|
| **JavaScript/TypeScript** | npm / bun | `npm install @lgtm-hq/turbo-themes` |
|
|
60
|
-
| **Python** |
|
|
60
|
+
| **Python** | uv / pip | `uv pip install turbo-themes` |
|
|
61
61
|
| **Ruby** | bundler | `gem "turbo-themes", "~> 0.12"` |
|
|
62
62
|
| **Swift** | SPM | Add `https://github.com/lgtm-hq/turbo-themes.git` |
|
|
63
63
|
|
|
@@ -74,9 +74,11 @@ npm install @lgtm-hq/turbo-themes
|
|
|
74
74
|
### Python
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
+
# Using uv (recommended)
|
|
78
|
+
uv pip install turbo-themes
|
|
79
|
+
|
|
80
|
+
# Or using pip
|
|
77
81
|
pip install turbo-themes
|
|
78
|
-
# or
|
|
79
|
-
uv add turbo-themes
|
|
80
82
|
```
|
|
81
83
|
|
|
82
84
|
### Ruby (Jekyll)
|
data/lib/turbo-themes/version.rb
CHANGED