Skip to content

Commit ec43ab4

Browse files
authored
chore: bump version to 2.0.0-rc.2 and fix packaging (#52)
1 parent b5bb6d8 commit ec43ab4

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/continuous-delivery.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ jobs:
3535
- uses: actions/upload-artifact@v4
3636
with:
3737
name: gem-${{ matrix.os }}
38-
path: pkg/*.gem
38+
path: |
39+
*.gem
40+
pkg/*.gem

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ruby_native_statistics (2.0.0.pre)
4+
ruby_native_statistics (2.0.0.rc.2)
55
rake-compiler (~> 1.3)
66
rb_sys (~> 0.9.91)
77

ext/ruby_native_statistics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruby_native_statistics"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
edition = "2024"
55

66
[lib]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RubyNativeStatistics
4-
VERSION = '2.0.0.rc.1'
4+
VERSION = '2.0.0.rc.2'
55
end

ruby_native_statistics.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
2525
ls.readlines("\x0", chomp: true).reject do |f|
2626
(f == gemspec) ||
27-
f.start_with?(*%w[bin/ Gemfile .gitignore test/ spec/ features/ .github/])
27+
f.start_with?(*%w[.ruby-version bin/ Gemfile .gitignore test/ spec/ features/ .github/])
2828
end
2929
end
3030

0 commit comments

Comments
 (0)