Skip to content

Commit

Permalink
Bump version: 0.2.22 → 0.2.23
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-canon committed Sep 24, 2018
1 parent a55d112 commit 76fda60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rocketc/rocketc.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def user_data(self):
user_data["email"] = user.emails[0]
user_data["role"] = runtime.get_user_role()
user_data["course_id"] = runtime.course_id
user_data["course"] = re.sub('[^A-Za-z0-9]+', '', runtime.course_id._to_string()) # pylint: disable=protected-access
user_data["course"] = re.sub('[^A-Za-z0-9]+', '', runtime.course_id.to_deprecated_string()) # pylint: disable=protected-access
user_data["username"] = user.opt_attrs['edx-platform.username']
user_data["anonymous_student_id"] = runtime.anonymous_student_id
return user_data
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 = 0.2.22
current_version = 0.2.23
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import setup

__version__ = '0.2.22'
__version__ = '0.2.23'


def package_data(pkg, roots):
Expand Down

0 comments on commit 76fda60

Please sign in to comment.