studio-engine 0.13.0 → 0.13.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 +11 -0
- data/lib/studio/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: 1509550e891472f578f1472b33782de7104a592e8d325ad11aa520c0b600171a
|
|
4
|
+
data.tar.gz: cac1e68d9950257d017a2f3c93d81733ac96e9ba27e9cf8b53cdfe06c9709552
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2880909b924c60c406aae3990240c47ef0d36cba7b4c34fb7b150dcbc1cd93a35d81d6bbb1cb4b65d22b832f7e83635ac68b0b26ded20bd099cf434e5773a066
|
|
7
|
+
data.tar.gz: f87db04adcf27abd17485c52bbb1f5767269f50ed19e9ac66a808d9d95e0271adc1109eb64539173e81a603a3cae915d7b380282d2ab2fad3cf14bef0936933e
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
The format is [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html) — `MAJOR.MINOR.PATCH`. Consumer Rails apps install the released RubyGems package with `gem "studio-engine", "~> 0.6"`; bumping the gem version and updating consumer lockfiles is a release.
|
|
4
4
|
|
|
5
|
+
## 0.13.1 — 2026-07-19
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **CI runs the engine's own suite from a glob-derived manifest** (PR #18) —
|
|
10
|
+
`bin/release-check` now derives its test manifest by globbing the tree
|
|
11
|
+
instead of keeping a hand-maintained list, and a suite-guard trips if any
|
|
12
|
+
test file goes unrun; bundler is set up before any other require so the
|
|
13
|
+
guard's invariant holds from boot. Internal CI tooling only — no
|
|
14
|
+
consumer-facing change.
|
|
15
|
+
|
|
5
16
|
## 0.13.0 — 2026-07-19
|
|
6
17
|
|
|
7
18
|
### Added
|
data/lib/studio/version.rb
CHANGED