Skip to content

Commit

Permalink
v18.0.0 upgrade to redwood
Browse files Browse the repository at this point in the history
  • Loading branch information
hinakhadim authored and regisb committed Jun 19, 2024
1 parent 4e7302a commit 6e16f2f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-18.0.0'></a>
## v18.0.0 (2024-06-19)

- 💥[Feature] Upgrade to Redwood (by @hinakhadim)
- [Feature] Enable `atlas pull` on all Micro-frontends. (by @omarithawi)
- 💥[Feature] Use `ATLAS_OPTIONS` for `atlas pull`. This breaks the `i18n-merge.js` custom locale Tutor MFE feature in favor of [OEP-58](https://docs.openedx.org/en/latest/developers/concepts/oep58.html) `atlas pull` options. (by @omarithawi)

<a id='changelog-17.0.1'></a>
## v17.0.1 (2024-03-26)

Expand Down
1 change: 0 additions & 1 deletion changelog.d/20240109_111839_i_atlas_options.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20240202_172501_i_atlas_for_all.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/20240228_111818_arbrandes_nightly.md

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def load_about():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=17.0.0,<18.0.0"],
extras_require={"dev": ["tutor[dev]>=17.0.0,<18.0.0"]},
install_requires=["tutor>=18.0.0,<19.0.0"],
extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]},
entry_points={"tutor.plugin.v1": ["mfe = tutormfe.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion tutormfe/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "17.0.1"
__version__ = "18.0.0"
1 change: 1 addition & 0 deletions tutormfe/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
the tutor-mfe hooks would be created in the context of some other plugin that imports
them.
"""

from __future__ import annotations

import typing as t
Expand Down

0 comments on commit 6e16f2f

Please sign in to comment.