From e4f2bbd7c1378c7ab83f92489dd2d2e5ec35e54c Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 3 Jan 2025 14:44:46 +0100 Subject: [PATCH] Bump version to 1.45.1 and update changelog --- .version | 2 +- Cargo.lock | 4 ++-- ChangeLog.md | 3 ++- bridge/Cargo.lock | 2 +- 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/Cargo.lock | 2 +- server/svix-server/Cargo.toml | 2 +- svix-cli/Cargo.toml | 2 +- svix-cli/README.md | 4 ++-- 22 files changed, 27 insertions(+), 26 deletions(-) diff --git a/.version b/.version index b8beb3917..34d29b8fe 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.45.0 \ No newline at end of file +1.45.1 \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 15413c538..35587a399 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1680,7 +1680,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "svix" -version = "1.45.0" +version = "1.45.1" dependencies = [ "base64 0.13.1", "hmac-sha256", @@ -1704,7 +1704,7 @@ dependencies = [ [[package]] name = "svix-cli" -version = "1.45.0" +version = "1.45.1" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/ChangeLog.md b/ChangeLog.md index fee3ba5a4..b7a82a2b2 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,7 @@ # Changelog -## Unreleased +## Version 1.45.1 +* CLI: Rename the binary back from `svix-cli` to `svix` * Libs/Java: Stop sharing one `ApiClient` between all `Svix` instances. Fixes a bug where multiple independently instantiated `Svix` instances would always use the same base path and auth token. diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index d90e3bd75..0422186a4 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4360,7 +4360,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.45.0" +version = "1.45.1" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index b87c5197f..0d4101328 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.45.0" +version = "1.45.1" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 92469dc0c..e16bda462 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net8.0 Svix - 1.45.0 + 1.45.1 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index f41ce58e5..25b75a8f8 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.45.0" +const Version = "1.45.1" diff --git a/java/README.md b/java/README.md index 4ef7662db..3b02fbbd7 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.45.0 + 1.45.1 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.45.0" +implementation "com.svix:svix:1.45.1" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index c65bab3a1..c772c3901 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.45.0 +VERSION_NAME=1.45.1 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 db1dcc2a0..f0621d64f 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.45.0"; + public static final String VERSION = "1.45.1"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 80743c737..56c2a92b1 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.45.0", + "version": "1.45.1", "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 60dec40ab..f5c722c88 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.45.0"; +const VERSION = "1.45.1"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 9c2e65170..04d1dca6c 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.45.0 + 1.45.1 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.45.0" +implementation "com.svix.kotlin:svix-kotlin:1.45.1" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 19ab262c1..4b927c6e3 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.45.0 +VERSION_NAME=1.45.1 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 ce8779b48..2c6c53a83 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.45.0" +__version__ = "1.45.1" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 48382092c..84d659ddf 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.45.0) + svix (1.45.1) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 01f094fee..5668acce8 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.45.0" + VERSION = "1.45.1" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 33025a6a9..354c02e16 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.45.0" +version = "1.45.1" authors = ["Svix Inc. "] edition = "2021" description = "Svix webhooks API client and webhook verification library" diff --git a/server/Cargo.lock b/server/Cargo.lock index 86615e9a2..1ef69aebd 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4818,7 +4818,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.45.0" +version = "1.45.1" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 926c2049e..07e85b59b 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.45.0" +version = "1.45.1" description = "Svix webhooks server" publish = false edition.workspace = true diff --git a/svix-cli/Cargo.toml b/svix-cli/Cargo.toml index 4a9ce8fea..90395c913 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.45.0" +version = "1.45.1" edition = "2021" license = "MIT" keywords = ["svix", "webhooks", "diahook"] diff --git a/svix-cli/README.md b/svix-cli/README.md index 03b444aa3..dc0e59798 100644 --- a/svix-cli/README.md +++ b/svix-cli/README.md @@ -24,13 +24,13 @@ A CLI to interact with the Svix API. Pre-built binaries are available for Linux, macOS via shell script installers. ``` -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.45.0/svix-cli-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.45.1/svix-cli-installer.sh | sh ``` For Windows users, installation can be done via powershell: ``` -powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.45.0/svix-cli-installer.ps1 | iex" +powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.45.1/svix-cli-installer.ps1 | iex" ``` These scripts will install the binaries to `~/.svix/bin` and also add this directory to your `PATH` by default.