Skip to content

Commit

Permalink
Bump version & update changelog (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-frank authored Jul 23, 2021
1 parent 02f1d08 commit 1c9c826
Show file tree
Hide file tree
Showing 8 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.23.0
* All: Bump openapi-generator to 5.2.0, fixes bug in python lib which can throw if additionalProperties are found 🐛

## Version 0.22.0
* Python: Cleanup explicit exports in python 🤓
* All: Add Disabled flag to endpoint models ❌
Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<PackageId>Svix</PackageId>
<Version>0.22.0</Version>
<Version>0.23.0</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
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.22.0</version>
<version>0.23.0</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.22.0"
implementation "com.svix:svix:0.23.0"
```


Expand Down
2 changes: 1 addition & 1 deletion java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix
VERSION_NAME=0.22.0
VERSION_NAME=0.23.0

POM_URL=https://github.com/svix/svix-libs
POM_SCM_URL=git@github.com:svix/svix-libs.git
Expand Down
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.22.0",
"version": "0.23.0",
"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.22.0"
VERSION = "0.23.0"
# 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.22.0)
svix (0.23.0)

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.22.0"
VERSION = "0.23.0"
end

0 comments on commit 1c9c826

Please sign in to comment.