gelf_redux 4.2.0 → 4.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 +20 -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: 23f21deaa67f35134cc3781a6b9b679cc05ae4d928e515735bdf66f4cd72cf21
|
4
|
+
data.tar.gz: 2da40c103efeb1ef11af459975eb83018803d84b2a74800a7a24af9d63439f48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16892359ef4116bd14fc889e8dd7bf57ab57c7dcc9a0c2a6584a1ae7184e8a72677bfcd4b3a2ac06d451da8054c5e76218e3352465fe1147f80c6c65ca929a6e
|
7
|
+
data.tar.gz: adca9b13b7e2d9b62a9df3ede951f462cdef810eb2587ef177a0263f21fd842f0575b5b4fb3021ca671c414e2d734f7ec8a6815b8fca333c0d549fad99436f73
|
data/README.md
CHANGED
@@ -74,4 +74,23 @@ docker compose up
|
|
74
74
|
Or you can run a specific test:
|
75
75
|
```bash
|
76
76
|
docker compose up ruby26
|
77
|
-
```
|
77
|
+
```
|
78
|
+
|
79
|
+
### Create a release
|
80
|
+
- The VERSION file has to be updated to the new version number because it is used in gelf_redux.gemspec to
|
81
|
+
have a generic way of bumping the version
|
82
|
+
- CHANGELOG should be updated with a few hints about the release
|
83
|
+
- a release tag should be created from main branch after all PRs that will be part of the release have been merged
|
84
|
+
- creating a tag for the version is mandatory to be able to come back later for a fix-release if needed, example:
|
85
|
+
```shell
|
86
|
+
git tag v4.2.0
|
87
|
+
git push origin main --tags
|
88
|
+
```
|
89
|
+
#### For tags < 4.2.0
|
90
|
+
There is no automated way of pushing to rubygems, so we have to run these commands on a developers machine:
|
91
|
+
```shell
|
92
|
+
gem build *.gemspec
|
93
|
+
gem push *.gem
|
94
|
+
```
|
95
|
+
#### For tags >= 4.2.0
|
96
|
+
There is a github action for automated releases which will run as soon as a version tag has been pushed
|