diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5839322..b3dd90e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: TUTOR_PLUGIN: minio TUTOR_PYPI_PACKAGE: tutor-minio - OPENEDX_RELEASE: palm + OPENEDX_RELEASE: quince GITHUB_REPO: overhangio/tutor-minio include: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e39f53..f3103ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ instructions, because git commits are used to generate release notes: + +## v17.0.0 (2023-12-09) + +- 💥[Feature] Upgrade to Quince. (by @Fahadkhalid210) +- [Bugfix] Make LMS/Studio connnect to the right port in dev mode. (by @ormsbee) + ## v16.0.2 (2023-12-08) diff --git a/changelog.d/20230713_093132_dave_fix_dev_port.md b/changelog.d/20230713_093132_dave_fix_dev_port.md deleted file mode 100644 index aa889f3..0000000 --- a/changelog.d/20230713_093132_dave_fix_dev_port.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Make LMS/Studio connnect to the right port in dev mode. (by @ormsbee) \ No newline at end of file diff --git a/setup.py b/setup.py index 165f231..99f3f68 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,8 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.8", - install_requires=["tutor>=16.0.0,<17.0.0"], - extras_require={"dev": "tutor[dev]>=16.0.0,<17.0.0"}, + install_requires=["tutor>=17.0.0,<18.0.0"], + extras_require={"dev": "tutor[dev]>=17.0.0,<18.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 eabf3d3..a08b09c 100644 --- a/tutorminio/__about__.py +++ b/tutorminio/__about__.py @@ -1 +1 @@ -__version__ = "16.0.2" +__version__ = "17.0.0" diff --git a/tutorminio/patches/openedx-lms-common-settings b/tutorminio/patches/openedx-lms-common-settings deleted file mode 100644 index 1b1db82..0000000 --- a/tutorminio/patches/openedx-lms-common-settings +++ /dev/null @@ -1,9 +0,0 @@ -# LMS-specific media storage -PROFILE_IMAGE_BACKEND = { - "class": DEFAULT_FILE_STORAGE, - "options": { - "location": PROFILE_IMAGE_BACKEND["options"]["location"].lstrip("/"), - # the following non empty property is necessary in development - "base_url": "dummyprofileimagebaseurl", - }, -}