Skip to content

Commit

Permalink
Bump version & update changelog (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
tasn authored Jul 5, 2021
1 parent ea743d8 commit 0fe7bf9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix</groupId>
<artifactId>svix</artifactId>
<version>0.20.0</version>
<version>0.20.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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"
```


Expand Down
4 changes: 2 additions & 2 deletions java/gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)
VENDOR_NAME=Svix (https://www.svix.com)
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
svix (0.20.0)
svix (0.20.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion ruby/src/svix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Svix
VERSION = "0.20.0"
VERSION = "0.20.1"
end

0 comments on commit 0fe7bf9

Please sign in to comment.