Skip to content

Commit c477bb3

Browse files
author
github-actions
committed
Generated v16.1.0.rc.3
1 parent 0c93cc2 commit c477bb3

6 files changed

Lines changed: 26 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## [v16.1.0.rc.3](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.3) (2026-03-30)
4+
5+
- No notable changes in this release.
6+
37
## [v16.1.0.rc.2](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.2) (2026-03-30)
48

59
- No notable changes in this release.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
fastly (16.1.0.rc.2)
4+
fastly (16.1.0.rc.3)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

README.md

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

33
A Ruby client library for interacting with most facets of the [Fastly API](https://www.fastly.com/documentation/reference/api/).
44

5-
> ⚠️ This client library (`16.1.0.rc.2`) is an early-access release. Features may change without notice. Use at your own risk.
5+
> ⚠️ This client library (`16.1.0.rc.3`) is an early-access release. Features may change without notice. Use at your own risk.
66
77
**We strongly recommend that you do not install alpha and beta releases on live production services.** No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us [feedback](#issues).
88

@@ -14,7 +14,7 @@ Read about the [Fastly Product Lifecycle](https://docs.fastly.com/products/fastl
1414
To install via RubyGems, add the following to your project's `Gemfile`:
1515

1616
```ruby
17-
gem 'fastly', '~> 16.1.0.rc.2'
17+
gem 'fastly', '~> 16.1.0.rc.3'
1818
```
1919

2020
Then run `bundle install`.

Rakefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
11
require "bundler/gem_tasks"
2+
3+
# Override Bundler's default `release` task to avoid pushing git tags.
4+
#
5+
# Our release workflow is triggered by a tag push in GitHub Actions and
6+
# publishes the gem using `rubygems/release-gem` (trusted publishing).
7+
# The default Bundler task would also try to create and push a git tag,
8+
# which conflicts with our workflow.
9+
#
10+
# Pattern adapted from:
11+
# https://github.com/line/line-bot-sdk-ruby/pull/339
12+
13+
Rake::Task["release"].clear
14+
15+
desc "Build and push gem to RubyGems without pushing to source control"
16+
task "release" => %w[build release:guard_clean release:rubygem_push] do
17+
puts "Built and pushed gem to RubyGems without pushing to source control."
18+
end

lib/fastly/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
=end
1010

1111
module Fastly
12-
VERSION = '16.1.0.rc.2'
12+
VERSION = '16.1.0.rc.3'
1313
end

sig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"G": "7e0568e1", "D": "140ddf22"}
1+
{"G": "ed679a6d", "D": "9b0fc243"}

0 commit comments

Comments
 (0)