diff --git a/CHANGELOG.md b/CHANGELOG.md index caf75a3..91c0a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [0.10.3](https://github.com/SatelCreative/spylib/compare/0.10.2...0.10.3) +> 16 August 2024 + +* 📝 Change codeowners by @lishanl in https://github.com/SatelCreative/spylib/pull/223 +* 🐛 fix store domain regex by @lishanl in https://github.com/SatelCreative/spylib/pull/222 + + +#### [0.10.2](https://github.com/SatelCreative/spylib/compare/0.10.1...0.10.2) +> 07 February 2023 + +* ✨ Add connection test to token class by @lishanl in https://github.com/SatelCreative/spylib/pull/218 + + +#### [0.10.1](https://github.com/SatelCreative/spylib/compare/0.10.0...0.10.1) +> 26 January 2023 + +* 🚀 Fix tox deployment errors by @rahulpatidar0191 in https://github.com/SatelCreative/spylib/pull/216 +* :alien: Consider any shopify 5xx errors as intermittent errors for retry by @lishanl in https://github.com/SatelCreative/spylib/pull/214 + + #### [0.10.0](https://github.com/SatelCreative/spylib/compare/0.9.3...0.10.0) > 13 December 2023 diff --git a/pyproject.toml b/pyproject.toml index 701457f..b624f5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spylib" -version = "0.10.2" +version = "0.10.3" description = "A library to facilitate interfacing with Shopify's API" authors = ["Anthony Hillairet "] maintainers = ["Anthony Hillairet ", "Lishan Luo ", "Frank Chung "] diff --git a/spylib/__init__.py b/spylib/__init__.py index dd76f5f..cd92c84 100644 --- a/spylib/__init__.py +++ b/spylib/__init__.py @@ -1,3 +1,3 @@ """A library to facilitate interfacing with Shopify's API.""" -__version__ = '0.10.2' +__version__ = '0.10.3'