Skip to content

Commit f0c21ff

Browse files
author
github-actions
committed
Generated v16.1.0.rc.4
1 parent 4c1fd9c commit f0c21ff

6 files changed

Lines changed: 14 additions & 6 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.4](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.4) (2026-03-30)
4+
5+
- No notable changes in this release.
6+
37
## [v16.1.0.rc.3](https://github.com/fastly/fastly-ruby/releases/tag/release/v16.1.0.rc.3) (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.3)
4+
fastly (16.1.0.rc.4)
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.3`) is an early-access release. Features may change without notice. Use at your own risk.
5+
> ⚠️ This client library (`16.1.0.rc.4`) 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.3'
17+
gem 'fastly', '~> 16.1.0.rc.4'
1818
```
1919

2020
Then run `bundle install`.

fastly.gemspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ Gem::Specification.new do |s|
2727

2828
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
2929

30-
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
30+
s.files = Dir.chdir(__dir__) do
31+
`git ls-files -z`.split("\x0").select { |f| File.file?(f) }.reject do |f|
32+
f.start_with?('.')
33+
end
34+
end
3135
s.executables = []
3236
s.require_paths = ["lib"]
3337
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.3'
12+
VERSION = '16.1.0.rc.4'
1313
end

sig.json

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

0 commit comments

Comments
 (0)