From ac94dd50e2d1e6a125a95a2013c57ecf77eb7c3e Mon Sep 17 00:00:00 2001 From: Dino Perovic Date: Thu, 24 Mar 2022 15:37:11 +0100 Subject: [PATCH] Bump to 0.1.1 --- CHANGELOG.md | 7 ++----- pyproject.toml | 2 +- salesman_stripe/__init__.py | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a18960..c706ff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -## [0.1.2] - 2022-03-24 +## [0.1.1] - 2022-03-24 ### Changed - Render default templates for success and cancel - -## [0.1.1] - 2022-03-24 ### Fixed - Handle guest customer correctly @@ -18,7 +16,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial code -[Unreleased]: https://github.com/dinoperovic/django-salesman-stripe/compare/0.1.2...HEAD -[0.1.2]: https://github.com/dinoperovic/django-salesman-stripe/releases/tag/0.1.2 +[Unreleased]: https://github.com/dinoperovic/django-salesman-stripe/compare/0.1.1...HEAD [0.1.1]: https://github.com/dinoperovic/django-salesman-stripe/releases/tag/0.1.1 [0.1.0]: https://github.com/dinoperovic/django-salesman-stripe/releases/tag/0.1.0 diff --git a/pyproject.toml b/pyproject.toml index 8b45b4a..204d3a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-salesman-stripe" -version = "0.1.0" +version = "0.1.1" description = "Stripe payment integration for Salesman." authors = ["Dino Perovic "] license = "BSD-3-Clause" diff --git a/salesman_stripe/__init__.py b/salesman_stripe/__init__.py index 49b7cd1..9818f28 100644 --- a/salesman_stripe/__init__.py +++ b/salesman_stripe/__init__.py @@ -3,5 +3,5 @@ """ __title__ = 'Salesman Stripe' -__version__ = '0.1.0' +__version__ = '0.1.1' __author__ = 'Dino Perovic'