phraseapp-in-context-editor-ruby 3.1.0 → 3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +12 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/phraseapp-in-context-editor-ruby/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: 1d26e42fffd5138a7fecf9273413a584f2e0bac55f0c9ec280f2ff3f2c48701b
|
4
|
+
data.tar.gz: 675aa580225c7edf371c0b031a9b4dba485e36c72a71ebdbc991738548eb9ae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45d475e3a53d156711097c0926df63c9bc89a0ad78ffb56b908e48d11b5db0cc70267ac629edd0d24c7a0835572411fce36ff08b9de021e2787a1c389a11ae7d
|
7
|
+
data.tar.gz: 546bd0fa0eca47a62078b7f20b0e2ed1215fad2c73dcb0367f01c25fe235e64a16c4301d0a48ff665f67ed93a293b5556e5aadeadbe1fc2911f2b419e0ee074a
|
@@ -3,9 +3,20 @@ on:
|
|
3
3
|
push:
|
4
4
|
branches:
|
5
5
|
- master
|
6
|
+
|
7
|
+
permissions:
|
8
|
+
contents: read
|
9
|
+
|
6
10
|
jobs:
|
7
11
|
release:
|
8
12
|
runs-on: ubuntu-latest
|
13
|
+
|
14
|
+
permissions:
|
15
|
+
contents: write
|
16
|
+
id-token: write
|
17
|
+
issues: write
|
18
|
+
pull-requests: write
|
19
|
+
|
9
20
|
steps:
|
10
21
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
11
22
|
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
|
@@ -13,14 +24,11 @@ jobs:
|
|
13
24
|
node-version: 20
|
14
25
|
- uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939
|
15
26
|
with:
|
16
|
-
ruby-version:
|
27
|
+
ruby-version: "3.2" # Not needed with a .ruby-version file
|
17
28
|
|
18
29
|
- name: Install dependencies
|
19
30
|
run: npm install && bundle install
|
20
31
|
|
21
|
-
- name: Build and validate gem
|
22
|
-
run: gem build
|
23
|
-
|
24
32
|
- name: Semantic Release
|
25
33
|
uses: cycjimmy/semantic-release-action@61680d0e9b02ff86f5648ade99e01be17f0260a4
|
26
34
|
env:
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [3.1.1](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v3.1.0...v3.1.1) (2024-06-14)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Adjust workflow permissions so it can bump version ([#85](https://github.com/phrase/phraseapp-in-context-editor-ruby/issues/85)) ([42e00ed](https://github.com/phrase/phraseapp-in-context-editor-ruby/commit/42e00ed821fb594415a1b12d3c3e3ac2c24f951f))
|
7
|
+
|
1
8
|
# [3.1.0](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v3.0.1...v3.1.0) (2024-06-14)
|
2
9
|
|
3
10
|
|
data/Gemfile.lock
CHANGED