diff --git a/CHANGELOG.md b/CHANGELOG.md index f981b76..306eebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,13 @@ instructions, because git commits are used to generate release notes: + +## v19.0.0 (2024-10-25) + +- 💥[Feature] Upgrade to Sumac. (by @Faraz32123) +- [Feature] Add support for discovery media files in minio and a separate bucket for discovery in Minio. (by @Faraz32123) + + ## v18.0.0 (2024-06-20) diff --git a/changelog.d/20240702_152230_faraz.maqsood_add_separate_bucket_for_discovery.md b/changelog.d/20240702_152230_faraz.maqsood_add_separate_bucket_for_discovery.md deleted file mode 100644 index d2df59e..0000000 --- a/changelog.d/20240702_152230_faraz.maqsood_add_separate_bucket_for_discovery.md +++ /dev/null @@ -1 +0,0 @@ -- [Feature] Add support for discovery media files in minio and a separate bucket for discovery in Minio. (by @Faraz32123) diff --git a/setup.py b/setup.py index 2c8702c..64adec7 100644 --- a/setup.py +++ b/setup.py @@ -34,8 +34,8 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.8", - install_requires=["tutor>=18.0.0,<19.0.0"], - extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"}, + install_requires=["tutor>=19.0.0,<20.0.0"], + extras_require={"dev": "tutor[dev]>=19.0.0,<20.0.0"}, entry_points={"tutor.plugin.v1": ["minio = tutorminio.plugin"]}, classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/tutorminio/__about__.py b/tutorminio/__about__.py index c6a8b8e..0122a6f 100644 --- a/tutorminio/__about__.py +++ b/tutorminio/__about__.py @@ -1 +1 @@ -__version__ = "18.0.0" +__version__ = "19.0.0"