Skip to content

Commit 6446eb2

Browse files
authored
release: Release functions_framework 1.0.0
1 parent 767350e commit 6446eb2

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### v1.0.0 / 2021-07-07
4+
5+
* Bumped the version to 1.0.
6+
* Removed the "preview" notices for Google Cloud Functions since the Ruby runtime is now GA.
7+
38
### v0.11.0 / 2021-06-28
49

510
* UPDATED: Update CloudEvents dependency to 0.5 to get fixes for JSON formatting cases

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ An open source framework for writing lightweight, portable Ruby functions that
44
run in a serverless environment. Functions written to this Framework will run
55
in many different environments, including:
66

7-
* [Google Cloud Functions](https://cloud.google.com/functions) *(public preview)*
7+
* [Google Cloud Functions](https://cloud.google.com/functions)
88
* [Google Cloud Run](https://cloud.google.com/run)
99
* Any other [Knative](https://github.com/knative)-based environment
1010
* Your local development machine
@@ -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.11"
63+
gem "functions_framework", "~> 1.0"
6464
```
6565

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

docs/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Functions Framework is an open source framework for writing lightweight,
88
portable Ruby functions that run in a serverless environment. Functions written
99
to this Framework will run in many different environments, including:
1010

11-
* [Google Cloud Functions](https://cloud.google.com/functions) *(public preview)*
11+
* [Google Cloud Functions](https://cloud.google.com/functions)
1212
* [Google Cloud Run](https://cloud.google.com/run)
1313
* Any other [Knative](https://github.com/knative)-based environment
1414
* Your local development machine
@@ -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.11"
67+
gem "functions_framework", "~> 1.0"
6868
```
6969

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

docs/writing-functions.md

Lines changed: 3 additions & 3 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.11"
114+
gem "functions_framework", "~> 1.0"
115115
gem "sinatra", "~> 2.0"
116116
```
117117

@@ -152,7 +152,7 @@ information about it:
152152
require "functions_framework"
153153

154154
FunctionsFramework.cloud_event "hello" do |event|
155-
FunctionsFramework.logger.info "I received an event of type #{event.type}!"
155+
logger.info "I received an event of type #{event.type}!"
156156
end
157157
```
158158

@@ -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.11"
473+
gem "functions_framework", "~> 1.0"
474474
```
475475

476476
```ruby

lib/functions_framework/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ module FunctionsFramework
1717
# Version of the Ruby Functions Framework
1818
# @return [String]
1919
#
20-
VERSION = "0.11.0".freeze
20+
VERSION = "1.0.0".freeze
2121
end

0 commit comments

Comments
 (0)