diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a3d193f..ac10c48c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,13 @@ instructions, because git commits are used to generate release notes: + +## v17.0.2 (2024-04-09) + +- [Feature] Make it possible to use mounts for a local development. (by @cmltawt0) + +- [bugFix] Change the ecommerce MFEs remotes from `edx` to `openedx`. (by @christopappas) + ## v17.0.1 (2024-03-01) diff --git a/changelog.d/20240220_181216_cmltawt0_mounts.md b/changelog.d/20240220_181216_cmltawt0_mounts.md deleted file mode 100644 index 0dd64b22..00000000 --- a/changelog.d/20240220_181216_cmltawt0_mounts.md +++ /dev/null @@ -1 +0,0 @@ -- [Feature] Make it possible to use mounts for a local development. (by @cmltawt0) diff --git a/tutorecommerce/__about__.py b/tutorecommerce/__about__.py index dba3a77b..2335ecb9 100644 --- a/tutorecommerce/__about__.py +++ b/tutorecommerce/__about__.py @@ -1 +1 @@ -__version__ = "17.0.1" +__version__ = "17.0.2" diff --git a/tutorecommerce/plugin.py b/tutorecommerce/plugin.py index 4560ab99..fef5e2aa 100644 --- a/tutorecommerce/plugin.py +++ b/tutorecommerce/plugin.py @@ -72,11 +72,11 @@ def _add_ecommerce_mfe_apps( apps.update( { "orders": { - "repository": "https://github.com/edx/frontend-app-ecommerce.git", + "repository": "https://github.com/openedx/frontend-app-ecommerce.git", "port": 7296, }, "payment": { - "repository": "https://github.com/edx/frontend-app-payment.git", + "repository": "https://github.com/openedx/frontend-app-payment.git", "port": 1998, }, }