Skip to content

Commit 85d47fc

Browse files
committed
No longer mark Ruby gem as prerelease
1 parent 7b9ac83 commit 85d47fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Ruby 3.1 | 3.2 | 3.3](https://img.shields.io/badge/ruby-3.1%20%7C%203.2%20%7C%203.3-blue.svg?style=for-the-badge)
44
[![MIT](https://img.shields.io/github/license/temporalio/sdk-ruby.svg?style=for-the-badge)](LICENSE)
5-
<!-- TODO: [![Gem](https://img.shields.io/gem/v/temporalio?style=for-the-badge)](https://rubygems.org/gems/temporalio) -->
5+
[![Gem](https://img.shields.io/gem/v/temporalio?style=for-the-badge)](https://rubygems.org/gems/temporalio)
66

77
[Temporal](https://temporal.io/) is a distributed, scalable, durable, and highly available orchestration engine used to
88
execute asynchronous, long-running business logic in a scalable and resilient way.
@@ -59,17 +59,16 @@ Notably missing from this SDK:
5959

6060
### Installation
6161

62-
Install the gem to the desired version as mentioned at https://rubygems.org/gems/temporalio. Since the SDK is still in
63-
pre-release, the version should be specified explicitly. So either in a Gemfile like:
62+
Can require in a Gemfile like:
6463

6564
```
66-
gem 'temporalio', '<version>'
65+
gem 'temporalio'
6766
```
6867

6968
Or via `gem install` like:
7069

7170
```
72-
gem install temporalio -v '<version>'
71+
gem install temporalio
7372
```
7473

7574
**NOTE**: Due to [an issue](https://github.com/temporalio/sdk-ruby/issues/162), fibers (and `async` gem) are only
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-alpha1'
4+
VERSION = '0.2.0'
55
end

0 commit comments

Comments
 (0)