diff --git a/ChangeLog.md b/ChangeLog.md index 6f0572486..e3590355d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.20.1 +* JavaScript, Python and Go: fix regression with server URLs not being set correctly. + ## Version 0.20.0 * All: Update OpenAPI spec * Javascript: Fix bug with message attempt resend (would throw on return) diff --git a/java/README.md b/java/README.md index 7c79a011c..d9cbba26d 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.20.0 + 0.20.1 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.20.0" +implementation "com.svix:svix:0.20.1" ``` diff --git a/java/gradle.properties b/java/gradle.properties index 547168f2c..836ad73ac 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.20.0 +VERSION_NAME=0.20.1 POM_URL=https://github.com/svix/svix-libs POM_SCM_URL=git@github.com:svix/svix-libs.git @@ -18,4 +18,4 @@ POM_ARTIFACT_ID=svix POM_PACKAGING=jar POM_ORGANIZATION_URL=https://www.svix.com -VENDOR_NAME=Svix (https://www.svix.com) \ No newline at end of file +VENDOR_NAME=Svix (https://www.svix.com) diff --git a/javascript/package.json b/javascript/package.json index c04e45f9f..e0c6e0c2d 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.20.0", + "version": "0.20.1", "description": "Svix API client", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/python/setup.py b/python/setup.py index f11e77eb6..fb796f853 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "svix" -VERSION = "0.20.0" +VERSION = "0.20.1" # To install the library, run the following # # python setup.py install diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 9ffd5e372..5814c12ff 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.20.0) + svix (0.20.1) GEM remote: https://rubygems.org/ diff --git a/ruby/src/svix/version.rb b/ruby/src/svix/version.rb index c408447b8..e74cffae5 100644 --- a/ruby/src/svix/version.rb +++ b/ruby/src/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "0.20.0" + VERSION = "0.20.1" end