diff --git a/.fern/metadata.json b/.fern/metadata.json index 36e4fcd..3f0ccae 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -1,11 +1,11 @@ { - "cliVersion": "5.51.2", + "cliVersion": "5.74.2", "generatorName": "fernapi/fern-ruby-sdk", "generatorVersion": "1.1.13", "generatorConfig": { "clientClassName": "Vapi", "rubocopVariableNumberStyle": "disabled" }, - "originGitCommit": "5a015aa01196915bea6110904c69d5804f457ff5", - "sdkVersion": "2.0.0" + "originGitCommit": "4e11456408ec9d8f9d244007cc9c858439b75e01", + "sdkVersion": "2.0.1" } \ No newline at end of file diff --git a/.fern/replay.lock b/.fern/replay.lock new file mode 100644 index 0000000..358de33 --- /dev/null +++ b/.fern/replay.lock @@ -0,0 +1,16 @@ +# DO NOT EDIT MANUALLY - Managed by Fern Replay +version: "1.0" +generations: + - commit_sha: caafff76234c021adc32f2c1a74e286394bc8b77 + tree_hash: 231edd13c9f4cb05cc6c24a0533392798b053746 + timestamp: 2026-07-15T20:55:21.612Z + cli_version: unknown + generator_versions: {} + - commit_sha: a9b0c733c088f341373810a9b987425207c7a41c + tree_hash: 8a91952780acd9ebaa74367825c4809501784acd + timestamp: 2026-07-15T20:55:21.920Z + cli_version: unknown + generator_versions: + fernapi/fern-ruby-sdk: 1.1.13 +current_generation: a9b0c733c088f341373810a9b987425207c7a41c +patches: [] diff --git a/.fernignore b/.fernignore index 82e7de0..fad339e 100644 --- a/.fernignore +++ b/.fernignore @@ -3,3 +3,6 @@ .github/workflows/sdk-release-pr-notification.yml README.md changelog.md +.fern/replay.lock +.fern/replay.yml +.gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..74928d6 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.fern/replay.lock linguist-generated=true diff --git a/Gemfile.lock b/Gemfile.lock index 0c3e13f..0b89b94 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -16,8 +16,8 @@ GEM rexml hashdiff (1.2.1) io-console (0.8.2) - json (2.20.0) - language_server-protocol (3.17.0.5) + json (2.21.1) + language_server-protocol (3.17.0.6) lint_roller (1.1.0) method_source (1.1.0) minitest (5.27.0) @@ -40,7 +40,7 @@ GEM reline (0.6.3) io-console (~> 0.5) rexml (3.4.4) - rubocop (1.88.0) + rubocop (1.88.2) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -51,7 +51,7 @@ GEM rubocop-ast (>= 1.49.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.49.1) + rubocop-ast (1.50.0) parser (>= 3.3.7.2) prism (~> 1.7) rubocop-minitest (0.39.1) diff --git a/changelog.md b/changelog.md index 997d09e..15a7480 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,5 @@ +## [2.0.1] - 2026-07-15 + ## 2.0.0 - 2026-06-24 ### Breaking Changes * **`Vapi::Types::CartesiaExperimentalControlsSpeedZero`** has been renamed to **`Vapi::Types::CartesiaSpeedControlZero`**. Update any references to use the new name. diff --git a/lib/vapi/client.rb b/lib/vapi/client.rb index 9287dd2..ecc4e4e 100644 --- a/lib/vapi/client.rb +++ b/lib/vapi/client.rb @@ -10,7 +10,7 @@ def initialize(token:, base_url: nil) @raw_client = Vapi::Internal::Http::RawClient.new( base_url: base_url || Vapi::Environment::DEFAULT, headers: { - "User-Agent" => "vapi_server_sdk/2.0.0", + "User-Agent" => "vapi_server_sdk/2.0.1", "X-Fern-Language" => "Ruby", Authorization: "Bearer #{token}" } diff --git a/lib/vapi/version.rb b/lib/vapi/version.rb index e9df04c..fd820e2 100644 --- a/lib/vapi/version.rb +++ b/lib/vapi/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Vapi - VERSION = "2.0.0" + VERSION = "2.0.1" end