Skip to content

Commit 0a9ad7e

Browse files
release: 0.6.0 (#7)
* feat(api): manual updates * release: 0.6.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 996729c commit 0a9ad7e

7 files changed

Lines changed: 14 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 7
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fstagehand-ed52466945f2f8dfd3814a29e948d7bf30af7b76a7a7689079c03b8baf64e26f.yml
33
openapi_spec_hash: 5d57aaf2362b0d882372dbf76477ba23
4-
config_hash: 989ddfee371586e9156b4d484ec0a6cc
4+
config_hash: 8ec9eaf59304f664cf79f73de1488671

CHANGELOG.md

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

3+
## 0.6.0 (2026-01-05)
4+
5+
Full Changelog: [v0.5.0...v0.6.0](https://github.com/browserbase/stagehand-ruby/compare/v0.5.0...v0.6.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([ffa5258](https://github.com/browserbase/stagehand-ruby/commit/ffa5258d23db78c2aa398289bc4d775fd5d145f0))
10+
311
## 0.5.0 (2025-12-23)
412

513
Full Changelog: [v0.4.0...v0.5.0](https://github.com/browserbase/stagehand-ruby/compare/v0.4.0...v0.5.0)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
stagehand (0.5.0)
14+
stagehand (0.6.0)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "stagehand", "~> 0.5.0"
20+
gem "stagehand", "~> 0.6.0"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/stagehand/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def initialize(
8989
initial_retry_delay: self.class::DEFAULT_INITIAL_RETRY_DELAY,
9090
max_retry_delay: self.class::DEFAULT_MAX_RETRY_DELAY
9191
)
92-
base_url ||= "https://api.stagehand.browserbase.com/v1"
92+
base_url ||= "https://api.stagehand.browserbase.com"
9393

9494
if browserbase_api_key.nil?
9595
raise ArgumentError.new("browserbase_api_key is required, and can be set via environ: \"BROWSERBASE_API_KEY\"")

lib/stagehand/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Stagehand
4-
VERSION = "0.5.0"
4+
VERSION = "0.6.0"
55
end

0 commit comments

Comments
 (0)