Skip to content

Commit

Permalink
Update version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz committed Jan 17, 2025
1 parent f8002e7 commit 358b182
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-gems.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Build Gems
on:
pull_request:
push:
branches:
- main
Expand Down
5 changes: 5 additions & 0 deletions temporalio/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ AllCops:
# Keep cop rule settings in alphabetical order. For each rule setting, provide
# justification for the change from default.

# Temporarily disabled per https://github.com/rake-compiler/rake-compiler-dock/issues/145#issuecomment-2596848639
# until that is fixed
Gemspec/RequiredRubyVersion:
Enabled: false

# We want our classes in a certain order
Layout/ClassStructure:
Enabled: true
Expand Down
3 changes: 1 addition & 2 deletions temporalio/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ Rake::Task[:build].enhance([:copy_parent_files]) do
end

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

Expand Down
2 changes: 1 addition & 1 deletion temporalio/lib/temporalio/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Temporalio
VERSION = '0.2.0'
VERSION = '0.3.0'
end
1 change: 0 additions & 1 deletion temporalio/temporalio.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Gem::Specification.new do |spec|
spec.summary = 'Temporal.io Ruby SDK'
spec.homepage = 'https://github.com/temporalio/sdk-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1.0'

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

0 comments on commit 358b182

Please sign in to comment.