diff --git a/.version b/.version index d0c331a19..299c9c300 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.43.2 \ No newline at end of file +0.44.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 64949a1f5..8213cb975 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.44.0 +* All: Add support for the new Integration API 🆕 + ## Version 0.43.2 * JS: Bump vulnerable dependency 👮 * Ruby: Cleanup gem level imports 💅 diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index e918ebaab..4aa4a80f2 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.43.2 + 0.44.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 12d93a623..1df256449 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.43.2" +const Version = "0.44.0" diff --git a/java/README.md b/java/README.md index aec70bbdd..3fda0758c 100644 --- a/java/README.md +++ b/java/README.md @@ -18,7 +18,7 @@ Add this dependency to your project's POM: com.svix svix - 0.43.2 + 0.44.0 compile ``` @@ -28,7 +28,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix:svix:0.43.2" +implementation "com.svix:svix:0.44.0" ``` diff --git a/java/gradle.properties b/java/gradle.properties index 4dfb6ea79..cbda53b6c 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.43.2 +VERSION_NAME=0.44.0 POM_URL=https://github.com/svix/svix-libs POM_SCM_URL=git@github.com:svix/svix-libs.git diff --git a/java/lib/src/main/java/com/svix/Svix.java b/java/lib/src/main/java/com/svix/Svix.java index 5a05cb993..b64fdce5f 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 = "0.43.2"; + public static final String VERSION = "0.44.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index b9b39fd45..4729fc7e1 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.43.2", + "version": "0.44.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 e011950b7..e81b5d3fd 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -52,7 +52,7 @@ import * as base64 from "@stablelib/base64"; import * as sha256 from "fast-sha256"; const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes -const VERSION = "0.43.2"; +const VERSION = "0.44.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index db4411e69..a8a3c75a0 100644 --- a/kotlin/README.md +++ b/kotlin/README.md @@ -18,7 +18,7 @@ Add this dependency to your project's POM: com.svix.kotlin svix-kotlin - 0.43.2 + 0.44.0 compile ``` @@ -28,7 +28,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:0.43.2" +implementation "com.svix.kotlin:svix-kotlin:0.44.0" ``` diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index f27a002f8..c49cc6b25 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.43.2 +VERSION_NAME=0.44.0 POM_URL=https://github.com/svix/svix-libs POM_SCM_URL=git@github.com:svix/svix-libs.git diff --git a/kotlin/lib/src/main/kotlin/SvixOptions.kt b/kotlin/lib/src/main/kotlin/SvixOptions.kt index 5a95c8781..269db371b 100644 --- a/kotlin/lib/src/main/kotlin/SvixOptions.kt +++ b/kotlin/lib/src/main/kotlin/SvixOptions.kt @@ -1,7 +1,7 @@ package com.svix.kotlin data class SvixOptions(val serverUrl: String = DEFAULT_URL) { - private val version = "0.43.2" + private val version = "0.44.0" companion object { const val DEFAULT_URL = "https://api.svix.com" diff --git a/python/svix/__init__.py b/python/svix/__init__.py index e72417efc..74e4bab7f 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -35,4 +35,4 @@ "WebhookVerificationError", ] -__version__ = "0.43.2" +__version__ = "0.44.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 7e4fbe097..173c3d986 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.43.2) + svix (0.44.0) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 4e15b3f1f..71a32c93d 100644 --- a/ruby/lib/svix/version.rb +++ b/ruby/lib/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "0.43.2" + VERSION = "0.44.0" end