From 38d1b4b881cd750124f90f13d15ce59973ba08a8 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 27 May 2022 18:24:27 +0300 Subject: [PATCH] Bump version and update changelog. (#472) --- .version | 2 +- ChangeLog.md | 4 ++++ 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/svix-server/Cargo.toml | 2 +- 17 files changed, 22 insertions(+), 18 deletions(-) diff --git a/.version b/.version index e8f304f8a..a9299f67e 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.58.0 \ No newline at end of file +0.58.1 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index d8ece0754..741bb794e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,10 @@ ## Next * +## Version 0.58.1 +* Server: Fix logging configuration in production builds to actually be respected. +* Server: improve how we run Redis migrations. + ## Version 0.58.0 * Lib/Rust: add a Rust API client + webhook verification library! * Lib/Python: fix package installation on Windows. diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index a7431b10e..65a88ee32 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.58.0 + 0.58.1 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 615056c69..9265cfc38 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.58.0" +const Version = "0.58.1" diff --git a/java/README.md b/java/README.md index fa6709852..235ead34e 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.58.0 + 0.58.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.58.0" +implementation "com.svix:svix:0.58.1" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index d894fad54..b3f4b00bb 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.58.0 +VERSION_NAME=0.58.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 5edd66edc..21c5b9a77 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.58.0"; + public static final String VERSION = "0.58.1"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 594bb040f..7b00758c1 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.58.0", + "version": "0.58.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 a261154c1..3385509bd 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -54,7 +54,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.58.0"; +const VERSION = "0.58.1"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 2abafb9c2..e3b84ca00 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.58.0 + 0.58.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.58.0" +implementation "com.svix.kotlin:svix-kotlin:0.58.1" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index bf8958458..c57ba5683 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.58.0 +VERSION_NAME=0.58.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 1045f817a..8d4611288 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.58.0" + private val version = "0.58.1" companion object { const val DEFAULT_URL = "https://api.svix.com" diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 4de8b2fb5..ecb4a6410 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "0.58.0" +__version__ = "0.58.1" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 588e3274f..b253181e8 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.58.0) + svix (0.58.1) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 3d5073430..233081373 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.58.0" + VERSION = "0.58.1" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0a3058691..79b808342 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "0.58.0" +version = "0.58.1" authors = ["Svix Inc. "] edition = "2021" description="Rust library for interacting with the Svix API and verifying webhook signatures." diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 6f8325500..b8b65fc4d 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.58.0" +version = "0.58.1" license = "MIT" description = "Svix webhooks server"