Commit b550822d by Sven Marnach

Merge pull request #64 from open-craft/tag-2.0.3

Version 2.0.3.
parents 0eeb3981 51ba44b7
...@@ -9,7 +9,7 @@ install: ...@@ -9,7 +9,7 @@ install:
- "sh install_test_deps.sh" - "sh install_test_deps.sh"
- "pip uninstall -y xblock-drag-and-drop-v2" - "pip uninstall -y xblock-drag-and-drop-v2"
- "python setup.py sdist" - "python setup.py sdist"
- "pip install dist/xblock-drag-and-drop-v2-2.0.2.tar.gz" - "pip install dist/xblock-drag-and-drop-v2-2.0.3.tar.gz"
script: script:
- pep8 drag_and_drop_v2 tests --max-line-length=120 - pep8 drag_and_drop_v2 tests --max-line-length=120
- pylint drag_and_drop_v2 tests - pylint drag_and_drop_v2 tests
......
Version 2.0.3 (2016-02-18)
--------------------------
* Bugfix: When omitting the background image description in Studio, the red halo
indicating the field with the error did not show in Safari. (PR #62)
* Bugfix: Make short URLs of the form /static/... to uploaded images work
correctly for item background images. (PR #63)
Version 2.0.2 (2016-02-18) Version 2.0.2 (2016-02-18)
-------------------------- --------------------------
...@@ -8,7 +16,6 @@ Version 2.0.2 (2016-02-18) ...@@ -8,7 +16,6 @@ Version 2.0.2 (2016-02-18)
* Bugfix: In Studio, Newly added drag and drop components did not load properly, due to [a Studio bug](https://github.com/edx/edx-platform/pull/11433) that affects Cypress and Dogwood. (Fixed in Studio post-Dogwood.) (PR #55) * Bugfix: In Studio, Newly added drag and drop components did not load properly, due to [a Studio bug](https://github.com/edx/edx-platform/pull/11433) that affects Cypress and Dogwood. (Fixed in Studio post-Dogwood.) (PR #55)
* Fixed some flaky tests * Fixed some flaky tests
Version 2.0.1 (2016-02-15) Version 2.0.1 (2016-02-15)
-------------------------- --------------------------
* Bugfix: If zone labels are numbers, like "1", "2", etc., then the draggables would not match with that zone (you cannot drop the draggables onto that zone) (PR #54) * Bugfix: If zone labels are numbers, like "1", "2", etc., then the draggables would not match with that zone (you cannot drop the draggables onto that zone) (PR #54)
......
...@@ -23,7 +23,7 @@ def package_data(pkg, root_list): ...@@ -23,7 +23,7 @@ def package_data(pkg, root_list):
setup( setup(
name='xblock-drag-and-drop-v2', name='xblock-drag-and-drop-v2',
version='2.0.2', version='2.0.3',
description='XBlock - Drag-and-Drop v2', description='XBlock - Drag-and-Drop v2',
packages=['drag_and_drop_v2'], packages=['drag_and_drop_v2'],
install_requires=[ install_requires=[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment