rake-compiler-dock 1.4.0.rc2 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +16 -3
- data/CONTRIBUTING.md +5 -5
- data/Dockerfile.jruby +1 -1
- data/History.md +3 -8
- data/lib/rake_compiler_dock/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af056b3eda63fb49781dca44e794b86717ae188d1b7d0862a02d59138bc68a8f
|
4
|
+
data.tar.gz: 0bfc11ab05bd86bdef76d552558d5943034aa57f595f9cbbddd43a53f53de571
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6aaeebeede5adb2e6b06baa27bc25ddca831a818994ed3ca59b4e92472470f512dfc690b10257f676c91ba1809a0cb66e06731feed36c9fbcfbacd17cd14da1
|
7
|
+
data.tar.gz: 2a29130b0868d9433ebc7c3978de4c95c7809aaf2edda716c945d9dd2e048c63f924b296848ce384500ec959a654f275f6c4552872cb8f0793aec17ab3ec1438
|
data/.github/workflows/ci.yml
CHANGED
@@ -52,7 +52,7 @@ jobs:
|
|
52
52
|
|
53
53
|
- uses: ruby/setup-ruby@v1
|
54
54
|
with:
|
55
|
-
ruby-version: "3.
|
55
|
+
ruby-version: "3.2"
|
56
56
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
57
57
|
|
58
58
|
- name: Build docker image
|
@@ -120,7 +120,8 @@ jobs:
|
|
120
120
|
os:
|
121
121
|
- ubuntu
|
122
122
|
ruby:
|
123
|
-
- "head"
|
123
|
+
- "head"
|
124
|
+
- "3.3"
|
124
125
|
- "3.2"
|
125
126
|
- "3.1"
|
126
127
|
- "3.0"
|
@@ -158,6 +159,7 @@ jobs:
|
|
158
159
|
- ubuntu
|
159
160
|
ruby:
|
160
161
|
- "head" # 3.3
|
162
|
+
- "3.3"
|
161
163
|
- "3.2"
|
162
164
|
- "3.1"
|
163
165
|
- "3.0"
|
@@ -181,6 +183,9 @@ jobs:
|
|
181
183
|
- os: windows
|
182
184
|
ruby: "3.2"
|
183
185
|
platform: x64-mingw-ucrt
|
186
|
+
- os: windows
|
187
|
+
ruby: "3.3"
|
188
|
+
platform: x64-mingw-ucrt
|
184
189
|
- os: windows
|
185
190
|
ruby: "head"
|
186
191
|
platform: x64-mingw-ucrt
|
@@ -189,6 +194,8 @@ jobs:
|
|
189
194
|
ruby: "3.1"
|
190
195
|
- os: windows
|
191
196
|
ruby: "3.2"
|
197
|
+
- os: windows
|
198
|
+
ruby: "3.3"
|
192
199
|
- os: windows
|
193
200
|
ruby: "head"
|
194
201
|
|
@@ -220,7 +227,8 @@ jobs:
|
|
220
227
|
os:
|
221
228
|
- windows
|
222
229
|
ruby:
|
223
|
-
- "head"
|
230
|
+
- "head"
|
231
|
+
- "3.3"
|
224
232
|
- "3.2"
|
225
233
|
- "3.1"
|
226
234
|
- "3.0"
|
@@ -237,6 +245,9 @@ jobs:
|
|
237
245
|
- os: windows
|
238
246
|
ruby: "3.2"
|
239
247
|
platform: x64-mingw-ucrt
|
248
|
+
- os: windows
|
249
|
+
ruby: "3.3"
|
250
|
+
platform: x64-mingw-ucrt
|
240
251
|
- os: windows
|
241
252
|
ruby: "head"
|
242
253
|
platform: x64-mingw-ucrt
|
@@ -245,6 +256,8 @@ jobs:
|
|
245
256
|
ruby: "3.1"
|
246
257
|
- os: windows
|
247
258
|
ruby: "3.2"
|
259
|
+
- os: windows
|
260
|
+
ruby: "3.3"
|
248
261
|
- os: windows
|
249
262
|
ruby: "head"
|
250
263
|
|
data/CONTRIBUTING.md
CHANGED
@@ -5,14 +5,14 @@ This document is intended for the rake-compiler-dock contributors.
|
|
5
5
|
## Cutting a release
|
6
6
|
|
7
7
|
- prep
|
8
|
-
- [
|
8
|
+
- [ ] make sure CI is green!
|
9
9
|
- [x] update `History.md` and `lib/rake_compiler_dock/version.rb`
|
10
10
|
- build
|
11
|
-
- [
|
12
|
-
- [
|
13
|
-
- [
|
11
|
+
- [x] run the steps below to generate the images locally
|
12
|
+
- [x] run `gem build rake-compiler-dock`
|
13
|
+
- [x] create a git tag
|
14
14
|
- push
|
15
|
-
- [
|
15
|
+
- [x] run `bundle exec rake release:images`
|
16
16
|
- [ ] run `gem push pkg/rake-compiler-dock*gem`
|
17
17
|
- [ ] run `git push && git push --tags`
|
18
18
|
- announce
|
data/Dockerfile.jruby
CHANGED
data/History.md
CHANGED
@@ -1,12 +1,7 @@
|
|
1
|
-
1.4.0
|
2
|
-
|
3
|
-
|
4
|
-
* Add Ruby 3.3.0-rc1 cross-compilation support. (@flavorjones)
|
5
|
-
|
6
|
-
|
7
|
-
1.4.0.rc1 / 2023-11-26
|
8
|
-
----------------------
|
1
|
+
1.4.0 / 2023-12-26
|
2
|
+
------------------
|
9
3
|
|
4
|
+
* Add Ruby 3.3.0-rc1 cross-compilation support. #109, #105 (@flavorjones)
|
10
5
|
* Add Ruby 3.3.0-preview3 cross-compilation support. #105 (@flavorjones)
|
11
6
|
* Update to rake-compiler 1.2.5. #108 (@flavorjones)
|
12
7
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-compiler-dock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.0
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lars Kanis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -137,9 +137,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
137
137
|
version: '0'
|
138
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
139
|
requirements:
|
140
|
-
- - "
|
140
|
+
- - ">="
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
142
|
+
version: '0'
|
143
143
|
requirements: []
|
144
144
|
rubygems_version: 3.4.19
|
145
145
|
signing_key:
|