open-loam 0.1.0 → 0.1.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/lib/loam/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: bc673a0615dde0e5fb30f18d5b3f463fde57a87528e20d26ce8a97455240de5d
|
|
4
|
+
data.tar.gz: 62413655b212a0fcdd2ded4ae0eafb249e2fa1060b70b96f0d6e66ad1a2f6480
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78bda4ab675f9d4e47c4fafa538cc340c21109c4fa82af6ca203596e41d57091c833d3e8868122640ffef5158f30188ffaf7d305a8f4e72e194525ac0e754e9b
|
|
7
|
+
data.tar.gz: bb22f492bca6bba9de01bea58c57465a67d0b5f6ef1b92ca8cb8bb6ffadc9c533d8ce3915ca8fe51e3c0278da9d4aa4a48501dd3a4d94dabadc4547a4667efd8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ with the caveat that 0.x releases may break the public surface; the
|
|
|
5
5
|
[backward-compatibility contract](BACKWARD_COMPATIBILITY.md) names what is
|
|
6
6
|
frozen and what is not.
|
|
7
7
|
|
|
8
|
+
## 0.1.1 — 2026-09-04
|
|
9
|
+
|
|
10
|
+
No functional change. The packaged code is byte-identical to 0.1.0 — only CI
|
|
11
|
+
configuration moved, and workflows are not part of the gem.
|
|
12
|
+
|
|
13
|
+
This version exists to exercise the release pipeline end to end, so that the
|
|
14
|
+
first keyless publish is a version nothing depends on rather than one that
|
|
15
|
+
matters.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Releases are published from CI using RubyGems trusted publishing. GitHub's
|
|
20
|
+
OIDC token is exchanged for short-lived credentials, so no API key is held on
|
|
21
|
+
a maintainer's machine or in repository secrets, and publishing is gated on an
|
|
22
|
+
approval in the `release` environment.
|
|
23
|
+
|
|
8
24
|
## 0.1.0 — 2026-09-04
|
|
9
25
|
|
|
10
26
|
First public release. Loam is a working, tested prototype: the foundation and
|
data/lib/loam/version.rb
CHANGED