From b936537066549efb782c400cfe68ff7e1c37c3a4 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 25 Jan 2022 10:53:22 -0500 Subject: [PATCH] Bump version & update changelog (#216) --- .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 +- 15 files changed, 20 insertions(+), 16 deletions(-) diff --git a/.version b/.version index cdb454e9e..d0c331a19 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.43.1 \ No newline at end of file +0.43.2 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 027917845..64949a1f5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # Changelog +## Version 0.43.2 +* JS: Bump vulnerable dependency 👮 +* Ruby: Cleanup gem level imports 💅 + ## Version 0.43.1 * Java & Kotlin: Minor internal fix to restore version number parity with other libs diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index fcf9ba1ed..e918ebaab 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.43.1 + 0.43.2 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 08dd1bccf..12d93a623 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.43.1" +const Version = "0.43.2" diff --git a/java/README.md b/java/README.md index fd51d6e08..aec70bbdd 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.1 + 0.43.2 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.1" +implementation "com.svix:svix:0.43.2" ``` diff --git a/java/gradle.properties b/java/gradle.properties index 4f361698f..4dfb6ea79 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.43.1 +VERSION_NAME=0.43.2 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 d8c1908fd..d02b07269 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.1"; + public static final String VERSION = "0.43.2"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 098c11afa..b9b39fd45 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.43.1", + "version": "0.43.2", "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 2cbb5e755..91c0d99a3 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -46,7 +46,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.1"; +const VERSION = "0.43.2"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 16826e053..db4411e69 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.1 + 0.43.2 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.1" +implementation "com.svix.kotlin:svix-kotlin:0.43.2" ``` diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index cc27d7c7e..f27a002f8 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.43.1 +VERSION_NAME=0.43.2 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 1e7c26b55..5a95c8781 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.1" + private val version = "0.43.2" companion object { const val DEFAULT_URL = "https://api.svix.com" diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 233e3b7ac..9e610f89a 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -25,4 +25,4 @@ "WebhookVerificationError", ] -__version__ = "0.43.1" +__version__ = "0.43.2" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index d2227a70c..7e4fbe097 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.43.1) + svix (0.43.2) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index f26d95d84..4e15b3f1f 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.1" + VERSION = "0.43.2" end