From f09a4afc7adbdb764f616d5b1958bb4357da2eb7 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 6 Apr 2023 23:15:54 +0300 Subject: [PATCH] Bump version and update changelog. (#884) --- .version | 2 +- ChangeLog.md | 3 +++ csharp/Svix/Svix.csproj | 2 +- go/internal/version/version.go | 2 +- java/README.md | 4 ++-- java/gradle.properties | 2 +- java/lib/src/main/java/com/svix/Svix.java | 2 +- javascript/package.json | 2 +- javascript/src/index.ts | 2 +- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- kotlin/lib/src/main/kotlin/SvixOptions.kt | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 2 +- ruby/lib/svix/version.rb | 2 +- rust/Cargo.toml | 2 +- server/Cargo.lock | 2 +- server/svix-server/Cargo.toml | 2 +- 18 files changed, 22 insertions(+), 19 deletions(-) diff --git a/.version b/.version index 1bf697b94..485156ca6 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.83.0 \ No newline at end of file +0.83.1 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index c50fb8705..95f483853 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,9 @@ ## Next * +## Version 0.83.1 +* Libs: update OpenAPI spec + ## Version 0.83.0 * Server: bump deps * Libs: Add `send-example` wrapper to libraries diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 4fbd10e20..895175ef8 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 0.83.0 + 0.83.1 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index a80251244..8a314eb5c 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.83.0" +const Version = "0.83.1" diff --git a/java/README.md b/java/README.md index 4fe094ae3..da66e1b51 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.83.0 + 0.83.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.83.0" +implementation "com.svix:svix:0.83.1" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 7ea2f3c0b..7ce125bd1 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.83.0 +VERSION_NAME=0.83.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 48822cfae..94a5d0d1f 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.83.0"; + public static final String VERSION = "0.83.1"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index bb6d59184..a40ce95c0 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.83.0", + "version": "0.83.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 51dd51f9c..a3f314289 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -62,7 +62,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.83.0"; +const VERSION = "0.83.1"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 47865e009..68acc579d 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.83.0 + 0.83.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.83.0" +implementation "com.svix.kotlin:svix-kotlin:0.83.1" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 4033458ed..c03ff3d9d 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.83.0 +VERSION_NAME=0.83.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 913ee4c5b..62bafb863 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.83.0" + private val version = "0.83.1" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index b679bb1a3..87c94d291 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "0.83.0" +__version__ = "0.83.1" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index dea8b8a76..76ac04ca4 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.83.0) + svix (0.83.1) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 32438161a..93a5822d2 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.83.0" + VERSION = "0.83.1" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0f169b7f9..a083cdd6b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "0.83.0" +version = "0.83.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 73667f75c..5334ec60a 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -3249,7 +3249,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "0.83.0" +version = "0.83.1" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index b91f2b6ff..e77e4cfc7 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.83.0" +version = "0.83.1" license = "MIT" description = "Svix webhooks server"