Skip to content

Commit

Permalink
Merge pull request #34 from edx/robrap/ARCH-255-update-legacy-imports
Browse files Browse the repository at this point in the history
ARCH-255: Update edx-drf-extensions imports.
  • Loading branch information
robrap authored Oct 16, 2018
2 parents 7f8ee3d + f4125e3 commit 5758c13
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Nimisha Asthagiri <[email protected]>
Usman Khalid <[email protected]>
Rabia Iftikhar <[email protected]>
Ahsan Ulhaq <[email protected]>
Robert Raposa <[email protected]>
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Change Log
Unreleased
~~~~~~~~~~

[1.0.0] - 2018-10-16
--------------------
* Updated edx-drf-extensions imports. Completion will no longer work with
outdated versions of edx-drf-extensions.

[0.1.14] - 2018-10-04
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added submit_completion and submit_group_completion methods on
Expand Down
2 changes: 1 addition & 1 deletion completion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from __future__ import unicode_literals


__version__ = '0.1.14'
__version__ = '1.0.0'

default_app_config = 'completion.apps.CompletionAppConfig' # pylint: disable=invalid-name
3 changes: 2 additions & 1 deletion completion/api/v1/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
from rest_framework import permissions
from rest_framework import status

from edx_rest_framework_extensions.authentication import JwtAuthentication, SessionAuthenticationAllowInactiveUser
from edx_rest_framework_extensions.auth.jwt.authentication import JwtAuthentication
from edx_rest_framework_extensions.auth.session.authentication import SessionAuthenticationAllowInactiveUser
from opaque_keys.edx.keys import CourseKey, UsageKey
from opaque_keys import InvalidKeyError
from six import text_type
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Django>=1.8,<2.0 # Web application framework
django-model-utils # Provides TimeStampedModel abstract base class
djangorestframework>=3.2.0,<3.7.0 # REST API framework
edx-opaque-keys[django] # Create and introspect course and xblock identities
edx-drf-extensions>=1.6.1,<2.0.0 # Provides JWT authentication
edx-drf-extensions>=2.0.0,<3.0.0 # Provides JWT authentication
pytz # Time zone support
XBlock # Courseware component architecture

0 comments on commit 5758c13

Please sign in to comment.