Skip to content

Commit

Permalink
Publish 0.8.5
Browse files Browse the repository at this point in the history
SHA256 hashes:

nbgrader-0.8.5-py3-none-any.whl: dd92e1a6206377cd4d73b6b024d4fbf8aec3a7a8f9056be17b6d910705b0a94b

nbgrader-0.8.5.tar.gz: 22ea4a53cf77fccbe4aea10196782040a4d9f357730a463b0eb3db368311dea4

nbgrader-0.8.5.tgz: 1abbc6cf6119d3b5fa138aa76af9c859ed592e845ec66591f56a0396bf6a5d74
  • Loading branch information
brichet committed Sep 4, 2023
1 parent 7079e6a commit 412eac4
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 12 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ A summary of changes to nbgrader.

<!-- <START NEW CHANGELOG ENTRY> -->

## 0.8.5

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.4...7079e6af82abb4baeda4fcca4cbcab238cfe32d1))

### Enhancements made

- Add missing grade_cells before autograding [#1770](https://github.com/jupyter/nbgrader/pull/1770) ([@tuncbkose](https://github.com/tuncbkose))

### Bugs fixed

- Revert change breaking sqlalchemy 1.4.x [#1823](https://github.com/jupyter/nbgrader/pull/1823) ([@brichet](https://github.com/brichet))
- Add missing grade_cells before autograding [#1770](https://github.com/jupyter/nbgrader/pull/1770) ([@tuncbkose](https://github.com/tuncbkose))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter/nbgrader/graphs/contributors?from=2023-06-16&to=2023-09-04&type=c))

[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-06-16..2023-09-04&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2023-06-16..2023-09-04&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Ajtpio+updated%3A2023-06-16..2023-09-04&type=Issues) | [@lahwaacz](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Alahwaacz+updated%3A2023-06-16..2023-09-04&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Ameeseeksmachine+updated%3A2023-06-16..2023-09-04&type=Issues) | [@trevorcampbell](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Atrevorcampbell+updated%3A2023-06-16..2023-09-04&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.8.4

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.3...83a0429e32e5d146a638dfeef6cee9fad7f277ab))
Expand All @@ -24,8 +45,6 @@ A summary of changes to nbgrader.

[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-06-15..2023-06-16&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2023-06-15..2023-06-16&type=Issues) | [@tuncbkose](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Atuncbkose+updated%3A2023-06-15..2023-06-16&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.8.3

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.2...6b0ec9fd6a909692f346d98ecf0a5f52bf25e5e0))
Expand Down
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, 8, 4, "", "")
version_info = (0, 8, 5, "", "")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
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.8.4";
var nbgrader_version = "0.8.5";

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/course_list/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ define([
], function(Jupyter, $, utils, CourseList) {
"use strict";

var nbgrader_version = "0.8.4";
var nbgrader_version = "0.8.5";

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.8.4";
var nbgrader_version = "0.8.5";

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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nbgrader",
"version": "0.8.4",
"version": "0.8.5",
"description": "nbgrader nodejs dependencies",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies = [
"sqlalchemy>=1.4,<3",
"traitlets>5.0,<6",
]
version = "0.8.4"
version = "0.8.5"

[project.license]
file = "LICENSE"
Expand Down Expand Up @@ -156,7 +156,7 @@ before-build-python = [
]

[tool.tbump.version]
current = "0.8.4"
current = "0.8.5"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion src/assignment_list/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class AssignmentListWidget extends Widget {
checkNbGraderVersion() {
var warning = this.node.getElementsByClassName('version_error')[0] as HTMLDivElement;
warning.hidden=false;
requestAPI<any>('nbgrader_version?version='+"0.8.4")
requestAPI<any>('nbgrader_version?version='+"0.8.5")
.then(response => {
if (!response['success']) {
warning.innerText = response['message'];
Expand Down
2 changes: 1 addition & 1 deletion src/course_list/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class CourseListWidget extends Widget {
}

checkNbGraderVersion() {
let nbgrader_version = '0.8.4';
let nbgrader_version = '0.8.5';
requestAPI<any>('nbgrader_version?version='+nbgrader_version)
.then(response => {
if (!response['success']) {
Expand Down
2 changes: 1 addition & 1 deletion src/validate_assignment/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { requestAPI } from './validateassignment';

import { showNbGraderDialog, validate } from '../common/validate';

var nbgrader_version = "0.8.4"; // TODO: hardcoded value
var nbgrader_version = "0.8.5"; // TODO: hardcoded value

const PLUGIN_ID = "nbgrader/validate-assignment"

Expand Down

0 comments on commit 412eac4

Please sign in to comment.