admin_suite 0.2.5 → 0.2.6
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 +7 -0
- data/docs/releasing.md +3 -1
- data/lib/admin_suite/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a19232543e5f8aa66155c67a802f471e6263987ab9931ba5cc3b09d4594c8c1
|
|
4
|
+
data.tar.gz: f84997e801a5de253a888d7b43e6b18f9d147befa72c31b3b42b1037c28d002c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '00488cc60abfd97e0dee09e8a6958a39488a190ab7e60667f554a06b316a1209ee1a720c7af888d6c43d045786d99f528fbc7c5c66ec9546370f8d15337e7a09'
|
|
7
|
+
data.tar.gz: 866b3dabd47b50f4fbe6f2f6ee8cfdb894906cbd9e7a1217f7b3f47a693ddcfcabf6fb1802b516ee68b768a9d341012ba1ba7eb6eba2dabc1bcaf7e3f2e1a284
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.6] - 2026-02-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Automated GitHub Release creation in the publish workflow, with release notes extracted from `CHANGELOG.md`.
|
|
15
|
+
- When no `CHANGELOG.md` entry exists for the current version, release notes are now primarily auto-generated from commits since the previous tag, with the plain "Release vX.Y.Z" string used only as a final fallback when no commit-generated notes are available.
|
|
16
|
+
|
|
10
17
|
## [0.1.0] - 2026-02-04
|
|
11
18
|
|
|
12
19
|
### Added
|
data/docs/releasing.md
CHANGED
|
@@ -20,6 +20,7 @@ The gem is automatically published to RubyGems when changes are merged to `main`
|
|
|
20
20
|
- Check if the version already exists on RubyGems
|
|
21
21
|
- Build and publish the gem (if it's a new version)
|
|
22
22
|
- Create a Git tag for the release (if it doesn't already exist)
|
|
23
|
+
- Create a GitHub Release with notes extracted from `CHANGELOG.md`, or auto-generated from commits since the previous tag if no CHANGELOG entry exists
|
|
23
24
|
|
|
24
25
|
### Requirements
|
|
25
26
|
|
|
@@ -59,7 +60,8 @@ gem push "admin_suite-X.Y.Z.gem"
|
|
|
59
60
|
## Notes
|
|
60
61
|
|
|
61
62
|
- RubyGems commonly requires MFA/OTP for pushes (this gem is configured with `rubygems_mfa_required`)
|
|
62
|
-
- The automated workflow uses a GitHub Actions bot to push tags
|
|
63
|
+
- The automated workflow uses a GitHub Actions bot to push tags and create GitHub Releases
|
|
63
64
|
- The publish workflow only runs after the CI workflow completes successfully
|
|
65
|
+
- GitHub Release notes are sourced from the matching version section in `CHANGELOG.md`; if no entry exists, they are auto-generated from commits since the previous tag; a plain "Release vX.Y.Z" string is used only as a final fallback when no previous tag or commit-generated notes are available
|
|
64
66
|
- You can manually trigger the publish workflow from the GitHub Actions tab if needed
|
|
65
67
|
|
data/lib/admin_suite/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: admin_suite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TechWright Labs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|