Skip to content

Commit a785ca0

Browse files
committed
Bump version to 0.2.3
1 parent 15bcf93 commit a785ca0

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

go/pkg/basecamp/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package basecamp
22

33
// Version is the current version of the Basecamp Go SDK.
4-
const Version = "0.2.2"
4+
const Version = "0.2.3"
55

66
// APIVersion is the Basecamp API version this SDK targets.
77
const APIVersion = "2026-01-26"

kotlin/sdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.basecamp"
8-
version = "0.2.2"
8+
version = "0.2.3"
99

1010
kotlin {
1111
jvm()

kotlin/sdk/src/commonMain/kotlin/com/basecamp/sdk/BasecampConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data class BasecampConfig(
2828
val baseRetryDelay: Duration = 1.seconds,
2929
) {
3030
companion object {
31-
const val VERSION = "0.2.2"
31+
const val VERSION = "0.2.3"
3232
const val API_VERSION = "2026-01-26"
3333
const val DEFAULT_BASE_URL = "https://3.basecampapi.com"
3434
const val DEFAULT_USER_AGENT = "basecamp-sdk-kotlin/$VERSION (api:$API_VERSION)"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@37signals/basecamp",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"private": true,
55
"description": "TypeScript SDK for the Basecamp API",
66
"engines": {

ruby/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
basecamp-sdk (0.2.2)
4+
basecamp-sdk (0.2.3)
55
faraday (~> 2.0)
66
zeitwerk (~> 2.6)
77

@@ -161,7 +161,7 @@ CHECKSUMS
161161
addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
162162
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
163163
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
164-
basecamp-sdk (0.2.2)
164+
basecamp-sdk (0.2.3)
165165
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
166166
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
167167
connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a

ruby/lib/basecamp/version.rb

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

33
module Basecamp
4-
VERSION = "0.2.2"
4+
VERSION = "0.2.3"
55
API_VERSION = "2026-01-26"
66
end

swift/Sources/Basecamp/BasecampConfig.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public struct BasecampConfig: Sendable {
2424
public let timeoutInterval: TimeInterval
2525

2626
/// SDK version string.
27-
public static let version = "0.2.2"
27+
public static let version = "0.2.3"
2828

2929
/// Basecamp API version this SDK targets.
3030
public static let apiVersion = "2026-01-26"

typescript/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@37signals/basecamp",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "TypeScript SDK for the Basecamp API",
55
"type": "module",
66
"main": "dist/index.js",

typescript/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export interface BasecampClientOptions {
202202
maxPages?: number;
203203
}
204204

205-
export const VERSION = "0.2.2";
205+
export const VERSION = "0.2.3";
206206
export const API_VERSION = "2026-01-26";
207207
const DEFAULT_USER_AGENT = `basecamp-sdk-ts/${VERSION} (api:${API_VERSION})`;
208208

0 commit comments

Comments
 (0)