diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 31ed6c5b1..224c68ba4 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -17,6 +17,11 @@ jobs: with: python-version: '3.8' + - name: Regen openapi libs + run: | + yarn + ./regen_openapi.sh + - name: Install setuptools run: | cd python diff --git a/ChangeLog.md b/ChangeLog.md index e2defa896..0e5d77d34 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.19.1 +* Python: Fix issue with pip package not generating the `openapi_client` properly on deploy + ## Version 0.19.0 * Python: Clean up exports, add API exceptions as `svix.exceptions` diff --git a/java/README.md b/java/README.md index 56a0ebe5e..841d3db3e 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.19.0 + 0.19.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.19.0" +implementation "com.svix:svix:0.19.1" ``` diff --git a/java/gradle.properties b/java/gradle.properties index 81e499227..fc8117ec9 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.19.0 +VERSION_NAME=0.19.1 POM_URL=https://github.com/svix/svix-libs POM_SCM_URL=git@github.com:svix/svix-libs.git diff --git a/javascript/package.json b/javascript/package.json index 68b6b482f..f3c1cb64f 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.19.0", + "version": "0.19.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 074fa87e9..5587b796c 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.19.0" +VERSION = "0.19.1" # To install the library, run the following # # python setup.py install diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 0063ba8cc..5ddcfcff1 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.19.0) + svix (0.19.1) GEM remote: https://rubygems.org/ diff --git a/ruby/src/svix/version.rb b/ruby/src/svix/version.rb index b97a4e4a0..fe7a962d9 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.19.0" + VERSION = "0.19.1" end