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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1ea430987d03ed145426e4c655e84179d60300b6e1734bf8dcfecc35ee51123
4
- data.tar.gz: 1ae0abee9dcc542e84dfbcb67616e96e3906e6c1543344e70791c58ce0780e12
3
+ metadata.gz: 8b6fabb643bbb1e247032294cd58cbf3dc3e8e1a8dbc8d7fc42f526b88e8697a
4
+ data.tar.gz: 2ac0235196e7eb0d90cde4a2c9c7e0187109d031afecfc8c342dd54e80e8f8bf
5
5
  SHA512:
6
- metadata.gz: 5e019f7be1760dfee233a0802f58b4dce5e97a381b277b5b5f27f7360281a270cce364e50def7f347e47eb3231e6f411635ab0c721798def09dd405779f13e52
7
- data.tar.gz: a894479dadb8409da37f565b46ea22ea0fce4748ba3ef86d7b669582c581639e0e412d6c0c4a88b2efc73d53e207425dedc049ef37e15bfd6f970c86c511aacb
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. Update the version in `lib/asciidoctor_diagram_layout/version.rb`
77
- 2. Update `CHANGELOG.md`
78
- 3. Commit: `git commit -m "Release x.y.z"`
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
- Requires `RUBYGEMS_API_KEY` secret configured in the repository settings.
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
- **Locally** - build, tag, and publish in one command:
83
+ **Manual publication** (if CI is unavailable):
85
84
 
86
85
  ```
87
- bundle exec rake release
86
+ bundle exec rake build
87
+ gem push pkg/*.gem
88
88
  ```
89
89
 
90
90
  Requires rubygems.org credentials (`gem signin`).
@@ -3,5 +3,5 @@
3
3
  # @author Anton Pechinsky
4
4
  module AsciidoctorDiagramLayout
5
5
  # Gem version.
6
- VERSION = "1.2.0"
6
+ VERSION = "1.3.0"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-diagram-layout
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Pechinsky