Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions conformance/runner/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../../../ruby
specs:
fizzy-sdk (0.2.1)
fizzy-sdk (0.2.2)
faraday (~> 2.0)
zeitwerk (~> 2.6)

Expand Down Expand Up @@ -49,7 +49,7 @@ CHECKSUMS
crack (1.0.1) sha256=ff4a10390cd31d66440b7524eb1841874db86201d5b70032028553130b6d4c7e
faraday (2.14.2) sha256=73ccb9994a9e8648f010e32eca2ae82e41c57860aa10932cda29418b9e0223ad
faraday-net_http (3.4.2) sha256=f147758260d3526939bf57ecf911682f94926a3666502e24c69992765875906c
fizzy-sdk (0.2.1)
fizzy-sdk (0.2.2)
hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
json (2.19.5) sha256=218a18553e4801d579ca7e0f5bc72bafd776d7397238a1fb4e74db5b0a812c59
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
Expand Down
2 changes: 1 addition & 1 deletion conformance/runner/typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go/pkg/fizzy/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package fizzy

// Version is the current version of the Fizzy Go SDK.
const Version = "0.2.1"
const Version = "0.2.2"

// APIVersion is the Fizzy API version this SDK targets.
const APIVersion = "2026-03-01"
2 changes: 1 addition & 1 deletion kotlin/sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.basecamp"
version = "0.2.1"
version = "0.2.2"

kotlin {
jvm()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data class FizzyConfig(
val baseRetryDelay: Duration = 1.seconds,
) {
companion object {
const val VERSION = "0.2.1"
const val VERSION = "0.2.2"
const val API_VERSION = "2026-03-01"
const val DEFAULT_BASE_URL = "https://fizzy.do"
const val DEFAULT_USER_AGENT = "fizzy-sdk-kotlin/$VERSION (api:$API_VERSION)"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@basecamp/fizzy",
"version": "0.2.1",
"version": "0.2.2",
"private": true,
"description": "TypeScript SDK for the Fizzy API",
"engines": { "node": ">=20.0.0" },
Expand Down
4 changes: 2 additions & 2 deletions ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
fizzy-sdk (0.2.1)
fizzy-sdk (0.2.2)
faraday (~> 2.0)
zeitwerk (~> 2.6)

Expand Down Expand Up @@ -172,7 +172,7 @@ CHECKSUMS
erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
faraday (2.14.2) sha256=73ccb9994a9e8648f010e32eca2ae82e41c57860aa10932cda29418b9e0223ad
faraday-net_http (3.4.2) sha256=f147758260d3526939bf57ecf911682f94926a3666502e24c69992765875906c
fizzy-sdk (0.2.1)
fizzy-sdk (0.2.2)
hashdiff (1.2.1) sha256=9c079dbc513dfc8833ab59c0c2d8f230fa28499cc5efb4b8dd276cf931457cd1
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/fizzy/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

module Fizzy
VERSION = "0.2.1"
VERSION = "0.2.2"
API_VERSION = "2026-03-01"
end
6 changes: 4 additions & 2 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ sedi "s/\"version\": \"[^\"]*\"/\"version\": \"$VERSION\"/" package.json
sedi "s/FizzyConfig.sdkVersion == \"[^\"]*\"/FizzyConfig.sdkVersion == \"$VERSION\"/" swift/Tests/FizzyTests/FizzyTests.swift

# Sync lockfiles
echo "Syncing TypeScript lockfile..."
echo "Syncing TypeScript lockfiles..."
cd typescript && npm install --package-lock-only 2>/dev/null && cd ..
cd conformance/runner/typescript && npm install --package-lock-only 2>/dev/null && cd ../../..

echo "Syncing Ruby lockfile..."
echo "Syncing Ruby lockfiles..."
cd ruby && bundle install 2>/dev/null && cd ..
cd conformance/runner/ruby && bundle install 2>/dev/null && cd ../../..

echo "Version bumped to $VERSION"
2 changes: 1 addition & 1 deletion swift/Sources/Fizzy/FizzyConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public struct FizzyConfig: Sendable {
public let allowInsecure: Bool

/// SDK version string.
public static let sdkVersion = "0.2.1"
public static let sdkVersion = "0.2.2"

/// Fizzy API version this SDK targets.
public static let apiVersion = "2026-03-01"
Expand Down
2 changes: 1 addition & 1 deletion swift/Tests/FizzyTests/FizzyTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct FizzyConfigTests {

@Test("SDK version")
func sdkVersion() {
#expect(FizzyConfig.sdkVersion == "0.2.1")
#expect(FizzyConfig.sdkVersion == "0.2.2")
#expect(FizzyConfig.apiVersion == "2026-03-01")
}

Expand Down
4 changes: 2 additions & 2 deletions typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@37signals/fizzy",
"version": "0.2.1",
"version": "0.2.2",
"description": "TypeScript SDK for the Fizzy API",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export interface FizzyClientOptions {
hooks?: FizzyHooks;
}

export const VERSION = "0.2.1";
export const VERSION = "0.2.2";
export const API_VERSION = "2026-03-01";
const DEFAULT_BASE_URL = "https://fizzy.do";
const DEFAULT_USER_AGENT = `fizzy-sdk-ts/${VERSION} (api:${API_VERSION})`;
Expand Down
Loading