federalist-basic-report-theme 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -5
- 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: db8e4f2035bd5c30fbab348245cfa722685df32fbf530156d7fe5183454e216b
|
4
|
+
data.tar.gz: f762bf309e16810cc2f97e107973566d17ea5909a0ad0888d04d971416a0d93e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07ee505978b05a27cc5cce310335721bd29808cb2d17b31156c24e35c4b80ae07aee9a8475e04fae6beadc0e9dc479867a7cbf5c521d0ac447fcfb878e2e678f
|
7
|
+
data.tar.gz: 6d7cdad321d0303970b6eb0e67d367f0416a04aa0cbd0ade5ba04ab76a9674331b1ad2f60a8d7a46556d7881377854692aec6b5cb8b16ed3eaeeee3bead61cb9
|
data/README.md
CHANGED
@@ -150,13 +150,19 @@ To add a custom directory to your theme-gem, please edit the regexp in `federali
|
|
150
150
|
|
151
151
|
## Release
|
152
152
|
|
153
|
-
Publishing to rubygems is handled by CI.
|
153
|
+
Publishing to rubygems is handled by CI. To trigger the release, you need to
|
154
|
+
bump the version as per [semver](https://semver.org/) and push a new git tag.
|
154
155
|
|
155
|
-
|
156
|
-
`federalist-basic-report-theme.gemspec`, commit, and tag the release. e.g.
|
156
|
+
Determine the new version e.g. `v0.1.0`.
|
157
157
|
|
158
|
-
|
159
|
-
|
158
|
+
Bump the version in `federalist-basic-report-theme.gemspec`. Then update the
|
159
|
+
dependencies.
|
160
|
+
|
161
|
+
$ bundle install
|
162
|
+
|
163
|
+
Commit the changes and create a new PR. Once merged, create a new git tag.
|
164
|
+
|
165
|
+
$ git checkout master && git pull
|
160
166
|
$ git tag $version
|
161
167
|
$ git push origin $version
|
162
168
|
|