v19.0.0 Upgrade to sumac

This commit is contained in:
Régis Behmo 2024-12-16 20:34:06 +01:00 committed by GitHub
commit ca03a2f844
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 5 deletions

View File

@ -19,6 +19,11 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here --> <!-- scriv-insert-here -->
<a id='changelog-19.0.0'></a>
## v19.0.0 (2024-12-09)
- 💥[Feature] Upgrade to Sumac (by @Abdul-Muqadim-Arbisoft)
<a id='changelog-18.0.1'></a> <a id='changelog-18.0.1'></a>
## v18.0.1 (2024-11-28) ## v18.0.1 (2024-11-28)

View File

@ -18,7 +18,7 @@ Enable the plugin and start the platform::
tutor plugins enable android tutor plugins enable android
tutor local launch tutor local launch
The ``.apk`` file will then be available for download at http(s)://mobile.LMS_HOST/app.apk. When running locally, this will be: http://mobile.local.edly.io/app.apk. You can forward this address to your students for download. The ``.apk`` file will then be available for download at http(s)://mobile.LMS_HOST/app.apk. When running locally, this will be: http://mobile.local.openedx.io/app.apk. You can forward this address to your students for download.
Building a custom Android app Building a custom Android app
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -44,8 +44,8 @@ setup(
packages=find_packages(exclude=["tests*"]), packages=find_packages(exclude=["tests*"]),
include_package_data=True, include_package_data=True,
python_requires=">=3.9", python_requires=">=3.9",
install_requires=["tutor>=18.0.0,<19.0.0"], install_requires=["tutor>=19.0.0,<20.0.0"],
extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]}, extras_require={"dev": ["tutor[dev]>=19.0.0,<20.0.0"]},
entry_points={ entry_points={
"tutor.plugin.v1": [ "tutor.plugin.v1": [
"android = tutorandroid.plugin" "android = tutorandroid.plugin"

View File

@ -1 +1 @@
__version__ = "18.0.1" __version__ = "19.0.0"