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
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/basecamp/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package basecamp

// Version is the current version of the Basecamp Go SDK.
const Version = "0.9.0"
const Version = "0.10.0"

// APIVersion is the Basecamp API version this SDK targets.
const APIVersion = "2026-07-28"
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.9.0"
version = "0.10.0"

kotlin {
jvm {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data class BasecampConfig(
val baseRetryDelay: Duration = 1.seconds,
) {
companion object {
const val VERSION = "0.9.0"
const val VERSION = "0.10.0"
const val API_VERSION = "2026-07-28"
const val DEFAULT_BASE_URL = "https://3.basecampapi.com"
const val DEFAULT_USER_AGENT = "basecamp-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": "@37signals/basecamp",
"version": "0.9.0",
"version": "0.10.0",
"private": true,
"description": "TypeScript SDK for the Basecamp API",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "basecamp-sdk"
version = "0.9.0"
version = "0.10.0"
description = "Official Python SDK for the Basecamp API"
requires-python = ">=3.11"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion python/src/basecamp/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = "0.9.0"
VERSION = "0.10.0"
API_VERSION = "2026-07-28"
2 changes: 1 addition & 1 deletion python/uv.lock

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

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:
basecamp-sdk (0.9.0)
basecamp-sdk (0.10.0)
faraday (~> 2.0)
zeitwerk (~> 2.6)

Expand Down Expand Up @@ -153,7 +153,7 @@ CHECKSUMS
addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
basecamp-sdk (0.9.0)
basecamp-sdk (0.10.0)
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
bundler (4.0.14) sha256=d09a0a965cf772266a7e49e83610be7c2f4e49e61134c42a56804bb383cc24b8
concurrent-ruby (1.3.7) sha256=4412caec3a5ea2e5fdc52076724c071a81f2c0593d83b2ac8cbb8ca63b3151b0
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/basecamp/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

module Basecamp
VERSION = "0.9.0"
VERSION = "0.10.0"
API_VERSION = "2026-07-28"
end
2 changes: 1 addition & 1 deletion swift/Sources/Basecamp/BasecampConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public struct BasecampConfig: Sendable {
public let timeoutInterval: TimeInterval

/// SDK version string.
public static let version = "0.9.0"
public static let version = "0.10.0"

/// Basecamp API version this SDK targets.
public static let apiVersion = "2026-07-28"
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/basecamp",
"version": "0.9.0",
"version": "0.10.0",
"description": "TypeScript SDK for the Basecamp 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 @@ -232,7 +232,7 @@ export interface BasecampClientOptions {
maxPages?: number;
}

export const VERSION = "0.9.0";
export const VERSION = "0.10.0";
export const API_VERSION = "2026-07-28";
const DEFAULT_USER_AGENT = `basecamp-sdk-ts/${VERSION} (api:${API_VERSION})`;

Expand Down
Loading