From d63be85823eba71209cd71fb6f31a6a1f92abbf6 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 30 Nov 2023 16:33:36 -0500 Subject: [PATCH 1/2] perf: add support for Palm version BREAKING CHANGE: add support for palm --- CHANGELOG.md | 6 ++++++ README.md | 7 ++++--- setup.cfg | 2 +- setup.py | 4 ++-- tutordistro/__about__.py | 2 +- 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c51a5f..a0aa688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [16.0.0] - 2023-11-30 + +### Features + +- Add support for the latest Open edX + eduNEXT release (Palm). + ## v15.3.1 - 2023-11-02 ### [15.3.1](https://github.com/eduNEXT/tutor-contrib-edunext-distro/compare/v15.3.0...v15.3.1) (2023-11-02) diff --git a/README.md b/README.md index b5fe6b1..b58229d 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ This plugin works with some docker images. These are defined by default if you have different images that aren't based on these, you can have some problems. ```yaml -DOCKER_IMAGE_OPENEDX: "docker.io/ednxops/distro-edunext-edxapp:olmo" -DOCKER_IMAGE_OPENEDX_DEV: "docker.io/ednxops/distro-edunext-edxapp-dev:olmo" +DOCKER_IMAGE_OPENEDX: "docker.io/ednxops/distro-edunext-edxapp:palma" +DOCKER_IMAGE_OPENEDX_DEV: "docker.io/ednxops/distro-edunext-edxapp-dev:palma" ``` Also, you need an edx-platform version distro compatible. @@ -51,6 +51,7 @@ Also, you need an edx-platform version distro compatible. | maple | mango | v13 | | nutmeg | nuez | v14 | | olive | olmo | v15 | +| palm | palma | v16 | :warning: **NOTE**: From Olmo version Distro has not defaulted packages. Now it is necessary to add the packages you want in ``config.yml`` file. See [How to add a new package](./docs/how_to_add_new_packages.rst) @@ -58,7 +59,7 @@ You can find distro releases on https://github.com/edunext/edunext-platform. ```yaml EDX_PLATFORM_REPOSITORY: "https://github.com/eduNEXT/edunext-platform.git" -EDX_PLATFORM_VERSION: "ednx-release/olmo.master" +EDX_PLATFORM_VERSION: "ednx-release/palma.master" ``` # Packages diff --git a/setup.cfg b/setup.cfg index 9361ad1..24c1b8c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 15.3.1 +current_version = 16.0.0 commit = False tag = False diff --git a/setup.py b/setup.py index 7629fa4..e182f90 100644 --- a/setup.py +++ b/setup.py @@ -38,8 +38,8 @@ def load_about(): long_description=load_readme(), packages=find_packages(exclude=["tests*"]), include_package_data=True, - python_requires=">=3.6", - install_requires=["tutor>=15.0.0, <16", "click", "schema"], + python_requires=">=3.8", + install_requires=["tutor>=16.0.0, <17", "click", "schema"], extras_require={ "test": ["behave", "pytest", "pylint", "pytest-mock", "pycodestyle", "isort", "schema"] }, diff --git a/tutordistro/__about__.py b/tutordistro/__about__.py index 8495e5f..668cdce 100644 --- a/tutordistro/__about__.py +++ b/tutordistro/__about__.py @@ -2,4 +2,4 @@ Tutor Distro version. """ -__version__ = "15.3.1" +__version__ = "16.0.0" From db960c08f2f78c09db2618ab2103a6b218064b4a Mon Sep 17 00:00:00 2001 From: Ever3tt Date: Wed, 13 Dec 2023 08:24:22 -0500 Subject: [PATCH 2/2] feat: some configurations have been reverted to the previuos version --- CHANGELOG.md | 6 ------ setup.cfg | 2 +- tutordistro/__about__.py | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0aa688..1c51a5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,12 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- -## [16.0.0] - 2023-11-30 - -### Features - -- Add support for the latest Open edX + eduNEXT release (Palm). - ## v15.3.1 - 2023-11-02 ### [15.3.1](https://github.com/eduNEXT/tutor-contrib-edunext-distro/compare/v15.3.0...v15.3.1) (2023-11-02) diff --git a/setup.cfg b/setup.cfg index 24c1b8c..9361ad1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 16.0.0 +current_version = 15.3.1 commit = False tag = False diff --git a/tutordistro/__about__.py b/tutordistro/__about__.py index 668cdce..8495e5f 100644 --- a/tutordistro/__about__.py +++ b/tutordistro/__about__.py @@ -2,4 +2,4 @@ Tutor Distro version. """ -__version__ = "16.0.0" +__version__ = "15.3.1"