Skip to content

Commit f4b70f7

Browse files
authored
chore: Update gem version in documentation to 0.10 (#103)
1 parent 590df2c commit f4b70f7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
6060
```ruby
6161
# Gemfile
6262
source "https://rubygems.org"
63-
gem "functions_framework", "~> 0.9"
63+
gem "functions_framework", "~> 0.10"
6464
```
6565

6666
Create a file called `app.rb` and include the following code. This defines a

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
6464
```ruby
6565
# Gemfile
6666
source "https://rubygems.org"
67-
gem "functions_framework", "~> 0.9"
67+
gem "functions_framework", "~> 0.10"
6868
```
6969

7070
Create a file called `app.rb` and include the following code. This defines a

docs/writing-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ dependency on Sinatra in your `Gemfile`:
111111

112112
```ruby
113113
source "https://rubygems.org"
114-
gem "functions_framework", "~> 0.9"
114+
gem "functions_framework", "~> 0.10"
115115
gem "sinatra", "~> 2.0"
116116
```
117117

@@ -470,7 +470,7 @@ Following is a typical layout for a Functions Framework based project.
470470
```ruby
471471
# Gemfile
472472
source "https://rubygems.org"
473-
gem "functions_framework", "~> 0.9"
473+
gem "functions_framework", "~> 0.10"
474474
```
475475

476476
```ruby

0 commit comments

Comments
 (0)