Skip to content

Commit 358b182

Browse files
committed
Update version to 0.3.0
1 parent f8002e7 commit 358b182

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/build-gems.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Build Gems
22
on:
3+
pull_request:
34
push:
45
branches:
56
- main

temporalio/.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ AllCops:
1717
# Keep cop rule settings in alphabetical order. For each rule setting, provide
1818
# justification for the change from default.
1919

20+
# Temporarily disabled per https://github.com/rake-compiler/rake-compiler-dock/issues/145#issuecomment-2596848639
21+
# until that is fixed
22+
Gemspec/RequiredRubyVersion:
23+
Enabled: false
24+
2025
# We want our classes in a certain order
2126
Layout/ClassStructure:
2227
Enabled: true

temporalio/Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ Rake::Task[:build].enhance([:copy_parent_files]) do
9494
end
9595

9696
task :rust_lint do
97-
# TODO(cretz): Add "-- -Dwarnings" to clippy when SDK core passes with it
98-
sh 'cargo', 'clippy'
97+
sh 'cargo', 'clippy', '--', '-Dwarnings'
9998
sh 'cargo', 'fmt', '--check'
10099
end
101100

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 Temporalio
4-
VERSION = '0.2.0'
4+
VERSION = '0.3.0'
55
end

temporalio/temporalio.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Gem::Specification.new do |spec|
1111
spec.summary = 'Temporal.io Ruby SDK'
1212
spec.homepage = 'https://github.com/temporalio/sdk-ruby'
1313
spec.license = 'MIT'
14-
spec.required_ruby_version = '>= 3.1.0'
1514

1615
spec.metadata['homepage_uri'] = spec.homepage
1716
spec.metadata['source_code_uri'] = 'https://github.com/temporalio/sdk-ruby'

0 commit comments

Comments
 (0)