Skip to content

Commit

Permalink
Merge pull request #1182 from jhamrick/0.5.x
Browse files Browse the repository at this point in the history
Make 0.5.6 release [ci skip]
  • Loading branch information
jhamrick authored Aug 21, 2019
2 parents 77a027e + 69c0070 commit 0b68cb8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nbgrader/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 5, 6, 'dev')
version_info = (0, 5, 6)
__version__ = '.'.join(map(str, version_info))
5 changes: 5 additions & 0 deletions nbgrader/docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ A summary of changes to nbgrader.
0.5.x
-----

0.5.6
~~~~~

nbgrader version 0.5.6 is a small release that only unpins the version of IPython and Jupyter console.

0.5.5
~~~~~

Expand Down
2 changes: 1 addition & 1 deletion nbgrader/nbextensions/assignment_list/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ define([
], function(Jupyter, $, utils, AssignmentList) {
"use strict";

var nbgrader_version = "0.5.6.dev";
var nbgrader_version = "0.5.6";

var ajax = utils.ajax || $.ajax;
// Notebook v4.3.1 enabled xsrf so use notebooks ajax that includes the
Expand Down
2 changes: 1 addition & 1 deletion nbgrader/nbextensions/validate_assignment/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ define([
], function ($, Jupyter, dialog, utils) {
"use strict";

var nbgrader_version = "0.5.6.dev";
var nbgrader_version = "0.5.6";

var ajax = utils.ajax || $.ajax;
// Notebook v4.3.1 enabled xsrf so use notebooks ajax that includes the
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@
"six>=1.9",
"requests",
"jsonschema",
"alembic",
"ipython<=6.2.1",
"jupyter-console<=5.2.0"
"alembic"
]
)

Expand Down

0 comments on commit 0b68cb8

Please sign in to comment.