pusher-push-notifications 2.0.0 → 2.0.1
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 +4 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/pusher/push_notifications/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: ab8ec42a2e99aabd1caedcf4440e7afead8424ec23ba28c4700c65b861f26a5e
|
4
|
+
data.tar.gz: 6c6811b91de648f49a77cb82ff8d642e5c28f37b8c515e4dd122a867d74970a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28187b8d79179d64979df36d377218e7dfafb0d0f36918c4b8f416eee6f9614500bed595505b071c937d0a62e2a411908abc190e166fb5df23088f91434a3480
|
7
|
+
data.tar.gz: 74b808a2f5f88f75b0fb3024211df2dbf32d770f562a89a62d61c781ac097b137d83987d513af9697cc0278b79835c9b66292c53466fa527c141087f0dad710a
|
@@ -63,9 +63,12 @@ jobs:
|
|
63
63
|
- name: Prepare version.rb
|
64
64
|
run: |
|
65
65
|
sed -i "s|VERSION = '[^']*'|VERSION = '${{ env.VERSION }}'|" lib/pusher/push_notifications/version.rb
|
66
|
+
- name: Prepare Gemfile.lock
|
67
|
+
run: |
|
68
|
+
sed -i "s|pusher-push-notifications ([^)]*)|pusher-push-notifications (${{ env.VERSION }})|" Gemfile.lock
|
66
69
|
- name: Commit changes
|
67
70
|
run: |
|
68
|
-
git add CHANGELOG.md lib/pusher/push_notifications/version.rb
|
71
|
+
git add CHANGELOG.md lib/pusher/push_notifications/version.rb Gemfile.lock
|
69
72
|
git commit -m "Bump to version ${{ env.VERSION }}"
|
70
73
|
- name: Push
|
71
74
|
run: git push
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED