diff --git a/.version b/.version index f7ba1bbd8..84c7d0bad 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.60.1 \ No newline at end of file +1.61.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index c800ed7d7..9bd5319a5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## Version 1.61.0 * Libs/Ruby **(Breaking)**: Ruby version changed from `2.7` to `3.4.2` * Libs/Ruby **(Breaking)**: Deprecated methods `MessageAttempt.list` and `MessageAttempt.list_attempts_for_endpoint` are removed diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 3e11783e5..44ad1e393 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4360,7 +4360,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.60.1" +version = "1.61.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index b16411acc..c49143a05 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.60.1" +version = "1.61.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 91311f979..ba6ce379c 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net8.0 Svix - 1.60.1 + 1.61.0 Svix Svix true diff --git a/csharp/Svix/Version.cs b/csharp/Svix/Version.cs index ffb06a1e3..eb7facd10 100644 --- a/csharp/Svix/Version.cs +++ b/csharp/Svix/Version.cs @@ -2,6 +2,6 @@ namespace Svix { public static class Version { - public const string version = "1.60.1"; + public const string version = "1.61.0"; } } diff --git a/go/version.go b/go/version.go index 86df92c6e..7d00277a7 100644 --- a/go/version.go +++ b/go/version.go @@ -1,3 +1,3 @@ package svix -const Version = "1.60.1" +const Version = "1.61.0" diff --git a/java/README.md b/java/README.md index 7e225339f..e85049134 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.60.1 + 1.61.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.60.1" +implementation "com.svix:svix:1.61.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index b312a7f0e..f699a8afc 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.60.1 +VERSION_NAME=1.61.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/Version.java b/java/lib/src/main/java/com/svix/Version.java index eb4c892b5..06c859dbe 100644 --- a/java/lib/src/main/java/com/svix/Version.java +++ b/java/lib/src/main/java/com/svix/Version.java @@ -1,5 +1,5 @@ package com.svix; public class Version { - public static final String VERSION = "1.60.1"; + public static final String VERSION = "1.61.0"; } diff --git a/javascript/package.json b/javascript/package.json index fceeb1726..0363db75c 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.60.1", + "version": "1.61.0", "description": "Svix webhooks API client and webhook verification library", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/request.ts b/javascript/src/request.ts index fad723e2d..031e3e2ac 100644 --- a/javascript/src/request.ts +++ b/javascript/src/request.ts @@ -2,7 +2,7 @@ import "svix-fetch"; import { ApiException } from "./util"; import { HttpErrorOut, HTTPValidationError } from "./HttpErrors"; -export const LIB_VERSION = "1.60.1"; +export const LIB_VERSION = "1.61.0"; const USER_AGENT = `svix-libs/${LIB_VERSION}/javascript`; export enum HttpMethod { diff --git a/kotlin/README.md b/kotlin/README.md index 4f2d3fa39..cde0758e1 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.60.1 + 1.61.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.60.1" +implementation "com.svix.kotlin:svix-kotlin:1.61.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 07c555644..5537adeb1 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.60.1 +VERSION_NAME=1.61.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/kotlin/lib/src/main/kotlin/Version.kt b/kotlin/lib/src/main/kotlin/Version.kt index 116347390..5a18ef540 100644 --- a/kotlin/lib/src/main/kotlin/Version.kt +++ b/kotlin/lib/src/main/kotlin/Version.kt @@ -1,3 +1,3 @@ package com.svix.kotlin -const val Version = "1.60.1" +const val Version = "1.61.0" diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 10ecab2e4..2c8737093 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.60.1" +__version__ = "1.61.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 630a71bb1..cbf9cf269 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.60.1) + svix (1.61.0) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 5cf146d7e..e74eeb0a9 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.60.1" + VERSION = "1.61.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d6b84da6d..36939c0e1 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.60.1" +version = "1.61.0" 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 76e4078de..396d20b79 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4751,7 +4751,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.60.1" +version = "1.61.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index db48cf750..4f9d2f050 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.60.1" +version = "1.61.0" description = "Svix webhooks server" publish = false edition.workspace = true diff --git a/svix-cli/Cargo.lock b/svix-cli/Cargo.lock index 7a1db98b4..bbd6ac157 100644 --- a/svix-cli/Cargo.lock +++ b/svix-cli/Cargo.lock @@ -1565,7 +1565,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "svix" -version = "1.60.1" +version = "1.61.0" dependencies = [ "base64 0.13.1", "hmac-sha256", @@ -1589,7 +1589,7 @@ dependencies = [ [[package]] name = "svix-cli" -version = "1.60.1" +version = "1.61.0" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/svix-cli/Cargo.toml b/svix-cli/Cargo.toml index 80a1bdb02..549a77875 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.60.1" +version = "1.61.0" edition = "2021" license = "MIT" keywords = ["svix", "webhooks", "diahook"] diff --git a/svix-cli/README.md b/svix-cli/README.md index 5ddcc2a1b..a1f2599b5 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.60.1/svix-cli-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.61.0/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.60.1/svix-cli-installer.ps1 | iex" +powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.61.0/svix-cli-installer.ps1 | iex" ``` These scripts will install the binaries to `~/.svix/bin` and also add this directory to your `PATH` by default.