Skip to content

Commit

Permalink
release: Release functions_framework 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma committed Jul 7, 2021
1 parent 767350e commit c8a380b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### v1.0.0 / 2021-07-07

* Bumping the version to 1.0. No significant changes.

### v0.11.0 / 2021-06-28

* UPDATED: Update CloudEvents dependency to 0.5 to get fixes for JSON formatting cases
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ An open source framework for writing lightweight, portable Ruby functions that
run in a serverless environment. Functions written to this Framework will run
in many different environments, including:

* [Google Cloud Functions](https://cloud.google.com/functions) *(public preview)*
* [Google Cloud Functions](https://cloud.google.com/functions)
* [Google Cloud Run](https://cloud.google.com/run)
* Any other [Knative](https://github.com/knative)-based environment
* Your local development machine
Expand Down Expand Up @@ -60,7 +60,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
```ruby
# Gemfile
source "https://rubygems.org"
gem "functions_framework", "~> 0.11"
gem "functions_framework", "~> 1.0"
```

Create a file called `app.rb` and include the following code. This defines a
Expand Down
4 changes: 2 additions & 2 deletions docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Functions Framework is an open source framework for writing lightweight,
portable Ruby functions that run in a serverless environment. Functions written
to this Framework will run in many different environments, including:

* [Google Cloud Functions](https://cloud.google.com/functions) *(public preview)*
* [Google Cloud Functions](https://cloud.google.com/functions)
* [Google Cloud Run](https://cloud.google.com/run)
* Any other [Knative](https://github.com/knative)-based environment
* Your local development machine
Expand Down Expand Up @@ -64,7 +64,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
```ruby
# Gemfile
source "https://rubygems.org"
gem "functions_framework", "~> 0.11"
gem "functions_framework", "~> 1.0"
```

Create a file called `app.rb` and include the following code. This defines a
Expand Down
6 changes: 3 additions & 3 deletions docs/writing-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ dependency on Sinatra in your `Gemfile`:

```ruby
source "https://rubygems.org"
gem "functions_framework", "~> 0.11"
gem "functions_framework", "~> 1.0"
gem "sinatra", "~> 2.0"
```

Expand Down Expand Up @@ -152,7 +152,7 @@ information about it:
require "functions_framework"

FunctionsFramework.cloud_event "hello" do |event|
FunctionsFramework.logger.info "I received an event of type #{event.type}!"
logger.info "I received an event of type #{event.type}!"
end
```

Expand Down Expand Up @@ -470,7 +470,7 @@ Following is a typical layout for a Functions Framework based project.
```ruby
# Gemfile
source "https://rubygems.org"
gem "functions_framework", "~> 0.11"
gem "functions_framework", "~> 1.0"
```

```ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/functions_framework/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ module FunctionsFramework
# Version of the Ruby Functions Framework
# @return [String]
#
VERSION = "0.11.0".freeze
VERSION = "1.0.0".freeze
end

0 comments on commit c8a380b

Please sign in to comment.