Skip to content

Commit

Permalink
Merge pull request #27 from cookiecutter-openedx/open-release/redwood…
Browse files Browse the repository at this point in the history
….master

chore: version bump to 18.0.0
  • Loading branch information
lpm0073 authored Nov 18, 2024
2 parents 1f67a99 + 7abaf75 commit 20a8240
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [18.0.1] (2024-4-8)

fix: update individual MFE_CONFIG keys instead of rewriting the entire dict.

### Bug Fixes
## [17.0.7] (2024-11-18)

- fix: don't override the entire mfe_config dict. instead, only set individual keys.
Expand All @@ -30,6 +35,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

* refactor MFE settings for Palm ([0923d14](https://github.com/cookiecutter-openedx/tutor-contrib-k8s-deploy-tasks/commit/0923d148493c371446dcce09ef7945e9e12365ca))

## [18.0.0] (2024-09-26)

- chore: bump to Redwood v18

## [15.0.3] (2023-08-14)

- chore: add cdn host to CORS_ORIGIN_WHITELIST and CSRF_TRUSTED_ORIGINS
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def load_about():
long_description_content_type="text/x-rst",
packages=find_namespace_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=17.0.0,<18.0.0"],
python_requires=">=3.10",
install_requires=["tutor>=18.0.0,<19.0.0"],
entry_points={"tutor.plugin.v1": ["k8s_deploy_tasks = tutork8s_deploy_tasks.plugin"]},
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -52,5 +52,6 @@ def load_about():
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)
2 changes: 1 addition & 1 deletion tutork8s_deploy_tasks/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "17.0.7"
__version__ = "18.0.1"

0 comments on commit 20a8240

Please sign in to comment.