From 9a283c912cfb70dcd85c3f13b2fa12bf7be1853b Mon Sep 17 00:00:00 2001 From: Owen Nelson Date: Tue, 31 Dec 2024 10:00:26 -0800 Subject: [PATCH] version bump for 1.52.0 --- .version | 2 +- ChangeLog.md | 3 +++ bridge/svix-bridge/Cargo.toml | 2 +- csharp/Svix/Svix.csproj | 2 +- go/internal/version/version.go | 2 +- java/README.md | 4 ++-- java/gradle.properties | 2 +- java/lib/src/main/java/com/svix/Svix.java | 2 +- javascript/package.json | 2 +- javascript/src/index.ts | 2 +- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 2 +- ruby/lib/svix/version.rb | 2 +- rust/Cargo.toml | 2 +- server/svix-server/Cargo.toml | 2 +- svix-cli/Cargo.toml | 2 +- 18 files changed, 22 insertions(+), 19 deletions(-) diff --git a/.version b/.version index 7ceac2f89..d4f820371 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.44.0 \ No newline at end of file +1.52.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index bd4f48fff..0294840ef 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,9 @@ # Changelog ## Next +* + +## Version 1.52.0 * Libs/Rust **(Breaking)**: Add `api::MessageAttemptListAttemptedMessagesOptions` and use it for `MessageAttempt::list_attempted_messages`, replacing `MessageAttemptListOptions` which contained some extra parameters never used with this method / endpoint ([#1568]) diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index b1617f060..be60ad498 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.44.0" +version = "1.52.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index b7a2be939..fbe3e85e6 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net8.0 Svix - 1.44.0 + 1.52.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index a16028ecb..b4771b19d 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.44.0" +const Version = "1.52.0" diff --git a/java/README.md b/java/README.md index f67a16be2..f49c74cf2 100644 --- a/java/README.md +++ b/java/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix svix - 1.44.0 + 1.52.0 compile ``` @@ -61,7 +61,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix:svix:1.44.0" +implementation "com.svix:svix:1.52.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 309a82b0f..d4d22a794 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.44.0 +VERSION_NAME=1.52.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/java/lib/src/main/java/com/svix/Svix.java b/java/lib/src/main/java/com/svix/Svix.java index 27aeb554b..cf48466cf 100644 --- a/java/lib/src/main/java/com/svix/Svix.java +++ b/java/lib/src/main/java/com/svix/Svix.java @@ -5,7 +5,7 @@ import com.svix.internal.auth.HttpBearerAuth; public final class Svix { - public static final String VERSION = "1.44.0"; + public static final String VERSION = "1.52.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 4c9bbf8f8..4f533ada9 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.44.0", + "version": "1.52.0", "description": "Svix webhooks API client and webhook verification library", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/index.ts b/javascript/src/index.ts index dbb4dce9a..452b6c80a 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -36,7 +36,7 @@ export { } from "./api/message_attempt"; export { OperationalWebhookEndpointListOptions } from "./api/op_webhook_endpoint"; -const VERSION = "1.44.0"; +const VERSION = "1.52.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 0268aa2bb..00dbecc6a 100644 --- a/kotlin/README.md +++ b/kotlin/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix.kotlin svix-kotlin - 1.44.0 + 1.52.0 compile ``` @@ -61,7 +61,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix.kotlin:svix-kotlin:1.44.0" +implementation "com.svix.kotlin:svix-kotlin:1.52.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index cb1901ddc..87c74b0a7 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.44.0 +VERSION_NAME=1.52.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/python/svix/__init__.py b/python/svix/__init__.py index cd68cec9b..d02b8f814 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.44.0" +__version__ = "1.52.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index aca638e06..5e0ee3cba 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.44.0) + svix (1.52.0) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index e87504995..605992767 100644 --- a/ruby/lib/svix/version.rb +++ b/ruby/lib/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "1.44.0" + VERSION = "1.52.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 8ff00f342..9a55da185 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.44.0" +version = "1.52.0" authors = ["Svix Inc. "] edition = "2021" description = "Svix webhooks API client and webhook verification library" diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 0abd8a0fe..9dbf9187b 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.44.0" +version = "1.52.0" description = "Svix webhooks server" publish = false edition.workspace = true diff --git a/svix-cli/Cargo.toml b/svix-cli/Cargo.toml index 99d64217e..62a492705 100644 --- a/svix-cli/Cargo.toml +++ b/svix-cli/Cargo.toml @@ -3,7 +3,7 @@ name = "svix-cli" description = "A CLI to interact with the Svix API." homepage = "https://www.svix.com" authors = ["Svix Inc. "] -version = "1.44.0" +version = "1.52.0" edition = "2021" license = "MIT" keywords = ["svix", "webhooks", "diahook"]