From cc013b8cc9d3b8ac6ed69b4a3b18e33fcb8286fe Mon Sep 17 00:00:00 2001 From: Fabian Geisler <40351119+fabiangeisler@users.noreply.github.com> Date: Sun, 27 Aug 2023 20:28:19 +0200 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.14.0=20=E2=86=92=200.15.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/pyshotgrid/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba8818e..41d6c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.15.0 (2023-08-27) + +### Feat + +- **Field**: Make Field inherit FieldSchema +- **SGEntity**: Add thumbnail and filmstrip properties + ## v0.14.0 (2023-07-26) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 2cd28b9..215a5b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,7 +87,7 @@ ignore_missing_imports = true [tool.commitizen] name = "cz_conventional_commits" -version = "0.14.0" +version = "0.15.0" tag_format = "v$version" update_changelog_on_bump = true annotated_tag = true diff --git a/src/pyshotgrid/__init__.py b/src/pyshotgrid/__init__.py index 6228667..95c62ca 100644 --- a/src/pyshotgrid/__init__.py +++ b/src/pyshotgrid/__init__.py @@ -20,7 +20,7 @@ ) #: The pyshotgrid version number as string -VERSION = "0.14.0" +VERSION = "0.15.0" # Register default pysg plugins register_pysg_class(sde.SGProject)