diff --git a/.version b/.version index e218073d4..eff74dbb0 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.76.0 \ No newline at end of file +0.76.1 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index c47c5d3f0..08c23852b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,11 @@ ## Next * +## Version 0.76.1 +* Server: fix `/attempt/endpoint`'s broken `?channel=` query +* Libs/Rust: add missing exports to a few API endpoints +* Libs: fix naming of replay-missing methods in libraries (all but Rust) + ## Version 0.76.0 * Server: add org_id and app_id to main tracing span * Server: make `wait_for` timeout early and retry diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 0a4c85043..e438a49c1 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 0.76.0 + 0.76.1 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 3605600de..f0438af5e 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.76.0" +const Version = "0.76.1" diff --git a/java/README.md b/java/README.md index 1d6ed17ef..dde1b54e3 100644 --- a/java/README.md +++ b/java/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix svix - 0.76.0 + 0.76.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:0.76.0" +implementation "com.svix:svix:0.76.1" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index d2075edb1..91b0490d6 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.76.0 +VERSION_NAME=0.76.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 7c7132906..0be2716bb 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.76.0"; + public static final String VERSION = "0.76.1"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 99a02bc66..9f46950d9 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.76.0", + "version": "0.76.1", "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 f05412bef..d57766525 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -60,7 +60,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.76.0"; +const VERSION = "0.76.1"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 267315462..a4ac84a2c 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 - 0.76.0 + 0.76.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:0.76.0" +implementation "com.svix.kotlin:svix-kotlin:0.76.1" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index e31e45180..587a2aec8 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.76.0 +VERSION_NAME=0.76.1 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 5652646dc..ee8ce0189 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 = "0.76.0" + private val version = "0.76.1" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index a89f78a18..41b499093 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "0.76.0" +__version__ = "0.76.1" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 2651e2383..246dcc818 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.76.0) + svix (0.76.1) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index de8bd0de5..c69f2f9a6 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.76.0" + VERSION = "0.76.1" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 971f64407..8cf0627bb 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "0.76.0" +version = "0.76.1" 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 f37843f9f..6718baf15 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -3306,7 +3306,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "0.76.0" +version = "0.76.1" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 2e43e8a02..69889dcb4 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.76.0" +version = "0.76.1" license = "MIT" description = "Svix webhooks server"