From 908029174f21dad121b3f093992d5ea1ea7316d8 Mon Sep 17 00:00:00 2001 From: Elliot Morris Date: Thu, 24 Nov 2022 21:28:47 +0000 Subject: [PATCH] [Release] Bump version to 1.0.0-alpha.4 Version bump for alpha 4 release Signed-off-by: Elliot Morris --- RELEASE_NOTES.md | 2 +- pyproject.toml | 2 +- setup.py | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 4874e7a..43e0266 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,7 @@ Release Notes ============= -v1.0.0-alpha.x +v1.0.0-alpha.4 ### Breaking Changes diff --git a/pyproject.toml b/pyproject.toml index 88e404d..86ed31f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta" [project] name = "openassetio-traitgen" -version = "1.0.0a3" +version = "1.0.0a4" requires-python = ">=3.7" authors = [ diff --git a/setup.py b/setup.py index 228608e..59d8047 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,9 @@ from setuptools import setup, find_packages setup( - name="openassetio-traitgen", - version="1.0.0-alpha.1", packages=find_packages(where="python"), package_dir={"": "python"}, include_package_data=True, - python_requires=">=3.7", install_requires=["jinja2==3.1.2", "pyyaml==5.4.1", "jsonschema==4.7.2"], entry_points={ "console_scripts": ["openassetio-traitgen=openassetio_traitgen.__main__:main"],