diff --git a/.version b/.version index a2d87226a..d70132e1d 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.35.0 \ No newline at end of file +1.36.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index b2eab2b94..3d49093f5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,9 @@ ## Next * +## Version 1.36.0 +* Libs(Go): edit `EndpointIn` to allow null for channels, filter types + ## Version 1.35.0 * Libs/Python: Revert breaking change to MessageInPayload/MessageOutPayload diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 64e80e64b..7f1d097e3 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.35.0" +version = "1.36.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 815eb1313..8dc62763f 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.35.0" +version = "1.36.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index e29b9b32e..f2472db00 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.35.0 + 1.36.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 49d35436c..1da53bea3 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.35.0" +const Version = "1.36.0" diff --git a/java/README.md b/java/README.md index 8f08acd7b..c203bea40 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.35.0 + 1.36.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.35.0" +implementation "com.svix:svix:1.36.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 0ffb2489e..027c25476 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.35.0 +VERSION_NAME=1.36.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 296a6193d..b5e5c1449 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.35.0"; + public static final String VERSION = "1.36.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index fa13100f0..53f8050ab 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.35.0", + "version": "1.36.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 07b1fda02..8e237e6ae 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -77,7 +77,7 @@ import * as base64 from "@stablelib/base64"; import * as sha256 from "fast-sha256"; const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes -const VERSION = "1.35.0"; +const VERSION = "1.36.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index c6b0c7538..9bac8ceea 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.35.0 + 1.36.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.35.0" +implementation "com.svix.kotlin:svix-kotlin:1.36.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index cf56cfa34..4b242b699 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.35.0 +VERSION_NAME=1.36.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 63ec0f264..a3363a1d0 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.35.0" +__version__ = "1.36.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 7741e1886..558a2bc5a 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.35.0) + svix (1.36.0) typhoeus (~> 1.0, >= 1.0.1) GEM @@ -9,7 +9,7 @@ GEM specs: diff-lcs (1.4.4) ethon (0.14.0) - ffi (>= 1.35.0) + ffi (>= 1.36.0) ffi (1.15.1) rake (13.0.6) rspec (3.10.0) diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index fb54f6a2e..6fcd78981 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.35.0" + VERSION = "1.36.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index c289ce1e5..d5178ef19 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.35.0" +version = "1.36.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 73027cdb8..dbb0ea1db 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4847,7 +4847,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.35.0" +version = "1.36.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index da620afad..cadcafa5d 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.35.0" +version = "1.36.0" license = "MIT" description = "Svix webhooks server"