Skip to content

Commit

Permalink
feat!: Remove subscription license signal and data (#129)
Browse files Browse the repository at this point in the history
See edx/edx-arch-experiments#41 for related
deletions.
  • Loading branch information
timmc-edx authored Oct 18, 2022
1 parent adab823 commit f019a43
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 93 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Change Log
Unreleased
----------

[2.0.0] - 2022-10-18
--------------------
* **Breaking change**: Removed signal ``SUBSCRIPTION_LICENSE_MODIFIED`` and corresponding data class ``SubscriptionLicenseData``. This should only affect experimental event-bus code (which should also have been deleted by now).

[1.0.0] - 2022-09-27
--------------------
* **Breaking Change**: Updated from ``Django 2.0`` to ``Django 3.0``.
Expand Down
2 changes: 1 addition & 1 deletion openedx_events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
more information about the project.
"""

__version__ = "1.0.0"
__version__ = "2.0.0"
8 changes: 0 additions & 8 deletions openedx_events/enterprise/__init__.py

This file was deleted.

52 changes: 0 additions & 52 deletions openedx_events/enterprise/data.py

This file was deleted.

30 changes: 0 additions & 30 deletions openedx_events/enterprise/signals.py

This file was deleted.

1 change: 0 additions & 1 deletion openedx_events/event_bus/avro/tests/test_avro.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# and used in the unit tests. Using 'disable=reimported' with pylint will work,
# because we just use the cached signal list.
from openedx_events.content_authoring import signals # pylint: disable=unused-import
from openedx_events.enterprise import signals # pylint: disable=reimported
from openedx_events.event_bus.avro.deserializer import AvroSignalDeserializer
from openedx_events.event_bus.avro.serializer import AvroSignalSerializer
from openedx_events.event_bus.avro.tests.test_utilities import (
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 2.0.0
commit = True
tag = True

Expand Down

0 comments on commit f019a43

Please sign in to comment.