diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77bf5295e0..34553448ce 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,11 +16,21 @@ Change Log Unreleased ---------- -[4.11.0] --------- +[4.10.12] +--------- feat: update cornerstone client to store API calls in DB +[4.10.11] +--------- +* fix: add missing comma to catalog query fields list. + +[4.10.10] +--------- + +feat: remove ability to edit catalog `include_exec_ed_2u_courses` + + [4.10.9] -------- diff --git a/enterprise/__init__.py b/enterprise/__init__.py index f2d38d70bf..002e116dd1 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,4 +2,4 @@ Your project description goes here. """ -__version__ = "4.11.0" +__version__ = "4.10.12" diff --git a/enterprise/admin/__init__.py b/enterprise/admin/__init__.py index 3182c91968..df241caaf4 100644 --- a/enterprise/admin/__init__.py +++ b/enterprise/admin/__init__.py @@ -810,6 +810,13 @@ class EnterpriseCatalogQueryAdmin(admin.ModelAdmin): class Meta: model = models.EnterpriseCatalogQuery + fields = ( + 'uuid', + 'title', + 'discovery_query_url', + 'content_filter', + ) + def get_urls(self): """ Returns the additional urls used by the custom object tools. @@ -826,7 +833,6 @@ def get_urls(self): list_display = ( 'title', 'discovery_query_url', - 'include_exec_ed_2u_courses', ) @admin.display(