bens-hello-world 0.2.1 → 0.2.4
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/.github/workflows/release.yml +1 -1
- data/CHANGELOG.md +21 -0
- data/Gemfile.lock +1 -1
- data/lib/bens/hello/world/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: 1e70dcb1f3aaf208b0722768511ba5c589ee298d2554aa852e0dbe47c98c32b0
|
|
4
|
+
data.tar.gz: 743612e0bf18462eae3d6d488009c9028e2b14d156eb741b20a1523855dfab3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a6c34a7dbd107b334709d74a1d165170a48320c58b4429dae0148af31e879ec7e665c2565645c1696aa440d7eac310a0266081ad1ee3f2590b54e00f8b2fb67
|
|
7
|
+
data.tar.gz: c2c036a2b41d6c7fec13839a73abcafd0886ede19e73a0e06893ea18cd9e9253a4d6f990eb65e5cb121f02ba8883e54b80722a66a0e1868e7a7649ae905bdc28
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
# Should breaking changes before 1.0.0 produce minor bumps?
|
|
21
21
|
bump-minor-pre-major: true
|
|
22
22
|
# Path to our version file to increment
|
|
23
|
-
version-file: "lib/release/
|
|
23
|
+
version-file: "lib/release/bens/hello/world/version.rb"
|
|
24
24
|
|
|
25
25
|
# Checkout code if release was created
|
|
26
26
|
- uses: actions/checkout@v2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.2.4](https://www.github.com/benkoshy/bens-hello-world/compare/v0.2.3...v0.2.4) (2021-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* gem version ([968de9b](https://www.github.com/benkoshy/bens-hello-world/commit/968de9b3ee872f8be9ad3676e7eb12c20e4c5922))
|
|
9
|
+
|
|
10
|
+
### [0.2.3](https://www.github.com/benkoshy/bens-hello-world/compare/v0.2.2...v0.2.3) (2021-07-28)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* path to version file ([fa60452](https://www.github.com/benkoshy/bens-hello-world/commit/fa604524b784e3f7f337baa38b74d9777f90bd86))
|
|
16
|
+
|
|
17
|
+
### [0.2.2](https://www.github.com/benkoshy/bens-hello-world/compare/v0.2.1...v0.2.2) (2021-07-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* seeing whether a release occurs here ([39d4086](https://www.github.com/benkoshy/bens-hello-world/commit/39d40862ec1b35d5744c1aef3ee00d4f6976ec2d))
|
|
23
|
+
|
|
3
24
|
### [0.2.1](https://www.github.com/benkoshy/bens-hello-world/compare/v0.2.0...v0.2.1) (2021-07-28)
|
|
4
25
|
|
|
5
26
|
|
data/Gemfile.lock
CHANGED