diff --git a/.version b/.version index abb165823..ed21137ee 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.9.0 \ No newline at end of file +1.10.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index f191a885b..42da4c716 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,10 @@ ## Next * +## Version 1.10.0 +* Server: fix docker image. +* Server: release arm64 version! + ## Version 1.9.0 * Server: add missing field documentation for query params. * Server: warn people trying to use the JWT secret as an auth token. diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 142f6afdd..25da15fcf 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -5741,7 +5741,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.9.0" +version = "1.10.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 88ff7da94..6a6cc8a50 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.9.0" +version = "1.10.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index d19463099..d3af8660e 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.9.0 + 1.10.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 22810e5e4..17f1d5d72 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.9.0" +const Version = "1.10.0" diff --git a/java/README.md b/java/README.md index c6fca427c..40f1446ff 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.9.0 + 1.10.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.9.0" +implementation "com.svix:svix:1.10.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index a8b95ba2b..59142638b 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.9.0 +VERSION_NAME=1.10.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 c21f00c65..32aaa4124 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.9.0"; + public static final String VERSION = "1.10.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 368b8ea0f..bf82a58de 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.9.0", + "version": "1.10.0", "description": "Svix API client", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/index.ts b/javascript/src/index.ts index 916aab4a2..afe72a9bb 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -70,7 +70,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.9.0"; +const VERSION = "1.10.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 0c45ab3a1..a4c78e0fa 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.9.0 + 1.10.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.9.0" +implementation "com.svix.kotlin:svix-kotlin:1.10.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 13518cc2e..61529bb9b 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.9.0 +VERSION_NAME=1.10.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/SvixOptions.kt b/kotlin/lib/src/main/kotlin/SvixOptions.kt index 21399adb3..9ed8d97b1 100644 --- a/kotlin/lib/src/main/kotlin/SvixOptions.kt +++ b/kotlin/lib/src/main/kotlin/SvixOptions.kt @@ -6,7 +6,7 @@ data class SvixOptions( val numRetries: Int? = null ) { - private val version = "1.9.0" + private val version = "1.10.0" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 9848e5df1..7376806d7 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.9.0" +__version__ = "1.10.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 58b27691a..acc79e3c9 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.9.0) + svix (1.10.0) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index af0124d59..c8f75b39d 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.9.0" + VERSION = "1.10.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index afe0d6723..4db72f34d 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.9.0" +version = "1.10.0" authors = ["Svix Inc. "] edition = "2021" description="Rust library for interacting with the Svix API and verifying webhook signatures." diff --git a/server/Cargo.lock b/server/Cargo.lock index e46ebd48b..0414a82e7 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4066,7 +4066,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.9.0" +version = "1.10.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 9948fd057..3af9729f6 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.9.0" +version = "1.10.0" license = "MIT" description = "Svix webhooks server"