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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.20.0"
".": "4.20.1"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 138
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-cba470b0c221bcfbe2e8bf51276292285a60a05a4c0b47f5f741706adf1205fc.yml
openapi_spec_hash: c9f1b73fb32f39243d9d95a667ea3341
config_hash: 6025fdbfe31c3b2d57a71f9885d37294
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-e8d4bd51bf260b8a6cb9875718e36eab95d4e8d9490cd6c5c669eb69b82c2bf8.yml
openapi_spec_hash: bf321581a238ae891debcc5bb59dd501
config_hash: 6c3a754258f0f77e9032a90a478ab76d
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.20.1 (2026-07-09)

Full Changelog: [v4.20.0...v4.20.1](https://github.com/trycourier/courier-java/compare/v4.20.0...v4.20.1)

## 4.20.0 (2026-07-09)

Full Changelog: [v4.19.2...v4.20.0](https://github.com/trycourier/courier-java/compare/v4.19.2...v4.20.0)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.courier"
version = "4.20.0" // x-release-please-version
version = "4.20.1" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private constructor(

fun userId(): Optional<String> = Optional.ofNullable(userId)

/** Update the preferences of a user for this specific tenant context. */
/** Replace the preferences of a user for this specific tenant context. */
fun tenantId(): Optional<String> = Optional.ofNullable(tenantId)

/**
Expand Down Expand Up @@ -118,7 +118,7 @@ private constructor(
/** Alias for calling [Builder.userId] with `userId.orElse(null)`. */
fun userId(userId: Optional<String>) = userId(userId.getOrNull())

/** Update the preferences of a user for this specific tenant context. */
/** Replace the preferences of a user for this specific tenant context. */
fun tenantId(tenantId: String?) = apply { this.tenantId = tenantId }

/** Alias for calling [Builder.tenantId] with `tenantId.orElse(null)`. */
Expand Down
Loading