asciidoctor-diagram-layout 1.2.0 → 1.3.0
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/README.md +8 -8
- data/lib/asciidoctor_diagram_layout/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: 8b6fabb643bbb1e247032294cd58cbf3dc3e8e1a8dbc8d7fc42f526b88e8697a
|
|
4
|
+
data.tar.gz: 2ac0235196e7eb0d90cde4a2c9c7e0187109d031afecfc8c342dd54e80e8f8bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84255327170574c5e0811bf2f8073c1519cb4f25f87dfa2521511ea40ceb33909ec1a8e7f7717706dca66767f1a5694f381abd9033a9f84925b968325620fe19
|
|
7
|
+
data.tar.gz: 6a18d6d44009cf64db8869435a9fe668fe8c36df12d64890b45a3bcc8cceec4d4427e7727caaa6cfc9f1079ab9e6a94aae518e5f96d99139611e2d87088fc7de
|
data/README.md
CHANGED
|
@@ -73,18 +73,18 @@ bundle exec rake build
|
|
|
73
73
|
|
|
74
74
|
### Releasing a new version
|
|
75
75
|
|
|
76
|
-
1.
|
|
77
|
-
2.
|
|
78
|
-
3.
|
|
79
|
-
4. Tag: `git tag vx.y.z`
|
|
80
|
-
5. Push: `git push origin vx.y.z`
|
|
76
|
+
1. Ensure all changes are listed under `## [Unreleased]` in `CHANGELOG.md`
|
|
77
|
+
2. Run `bundle exec rake 'prepare[1.2.0]'` — bumps version, updates changelog with today's date, commits, and tags
|
|
78
|
+
3. Push: `git push --follow-tags`
|
|
81
79
|
|
|
82
|
-
|
|
80
|
+
GitHub Actions triggers on the `v*` tag, builds the gem, and publishes it to
|
|
81
|
+
rubygems.org using the `RUBYGEMS_API_KEY` secret.
|
|
83
82
|
|
|
84
|
-
**
|
|
83
|
+
**Manual publication** (if CI is unavailable):
|
|
85
84
|
|
|
86
85
|
```
|
|
87
|
-
bundle exec rake
|
|
86
|
+
bundle exec rake build
|
|
87
|
+
gem push pkg/*.gem
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
Requires rubygems.org credentials (`gem signin`).
|