Skip to content

Commit 6781c9b

Browse files
v18.1.1
1 parent aa3eacb commit 6781c9b

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ instructions, because git commits are used to generate release notes:
1919

2020
<!-- scriv-insert-here -->
2121

22+
<a id='changelog-18.1.1'></a>
23+
## v18.1.1 (2024-12-16)
24+
25+
- 💥 [Deprecation] Drop support for python 3.8 and set Python 3.9 as the minimum supported python version. (by @Abdul-Muqadim-Arbisoft)
26+
27+
- 💥[Improvement] Rename Tutor's two branches (by @DawoudSheraz):
28+
* Rename **master** to **release**, as this branch runs the latest official Open edX release tag.
29+
* Rename **nightly** to **main**, as this branch runs the Open edX master branches, which are the basis for the next Open edX release.
30+
31+
- [Bugfix] Fix the LTI_DEFAULT_JUPYTER_HUB_URL which had an extra '%' in the HTTPS URL. (by @Danyal-Faheem)
32+
2233
<a id='changelog-18.1.0'></a>
2334
## v18.1.0 (2024-09-15)
2435

changelog.d/20241114_112205_abdul.muqadim_remove_py3_8_references.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/20241119_170155_dawoud.sheraz_branch_rename.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog.d/20241212_183857_danyal.faheem_fix_base_url.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def load_about():
4141
long_description_content_type="text/x-rst",
4242
packages=find_packages(exclude=["tests*"]),
4343
include_package_data=True,
44-
python_requires=">=3.9",
45-
install_requires=["tutor>=18.0.0,<19.0.0", "tutor-mfe>=18.0.0,<19.0.0"],
46-
extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"},
44+
a python_requires=">=3.9",
45+
install_requires=["tutor>=19.0.0,<20.0.0", "tutor-mfe>=19.0.0,<20.0.0"],
46+
extras_require={"dev": "tutor[dev]>=19.0.0,<20.0.0"},
4747
entry_points={
4848
"tutor.plugin.v1": [
4949
"jupyter = tutorjupyter.plugin"

tutorjupyter/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "18.1.0"
1+
__version__ = "18.1.1"

0 commit comments

Comments
 (0)