Skip to content

Commit b9515d8

Browse files
committed
Publish 0.9.1
SHA256 hashes: nbgrader-0.9.1-py3-none-any.whl: 6bb42e4d810d2644bfd9b9e00477a14f179be7ebad0ce98cea33ef8c5441eb13 nbgrader-0.9.1.tar.gz: 88e3718fb4e6f75dd0b90afea3c5ad0abf14fd23ead4ce7a5c2be5eb6fa327d2 nbgrader-0.9.1.tgz: 86a8c91c0143a82d2f1d03850206166e5babd0a9ef8503b69ea8036fbe1dd2d0
1 parent 7922f76 commit b9515d8

File tree

7 files changed

+23
-9
lines changed

7 files changed

+23
-9
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ A summary of changes to nbgrader.
22

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

5+
## 0.9.1
6+
7+
([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0...7922f769c4b30e9fb9260a7b8a39e7365373f980))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Labextension compatibility [#1827](https://github.com/jupyter/nbgrader/pull/1827) ([@brichet](https://github.com/brichet))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyter/nbgrader/graphs/contributors?from=2023-09-04&to=2023-09-05&type=c))
16+
17+
[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-09-04..2023-09-05&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 0.9.0
622

723
([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0a1...6db380039dab377157620516ae49eafcf7537fc8))
@@ -35,8 +51,6 @@ A summary of changes to nbgrader.
3551

3652
[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-07-21..2023-09-04&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2023-07-21..2023-09-04&type=Issues) | [@lahwaacz](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Alahwaacz+updated%3A2023-07-21..2023-09-04&type=Issues) | [@trevorcampbell](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Atrevorcampbell+updated%3A2023-07-21..2023-09-04&type=Issues) | [@tuncbkose](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Atuncbkose+updated%3A2023-07-21..2023-09-04&type=Issues)
3753

38-
<!-- <END NEW CHANGELOG ENTRY> -->
39-
4054
## 0.9.0a1
4155

4256
([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0a0...2d7dc7c0b758c5f61a34b7cc4a0fd2f04d748bb4))

nbgrader/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 9, 0, "", "")
1+
version_info = (0, 9, 1, "", "")
22
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nbgrader",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "nbgrader nodejs dependencies",
55
"keywords": [
66
"jupyter",

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies = [
4949
"sqlalchemy>=1.4,<3",
5050
"PyYAML>=6.0",
5151
]
52-
version = "0.9.0"
52+
version = "0.9.1"
5353

5454
[project.license]
5555
file = "LICENSE"
@@ -156,7 +156,7 @@ before-build-python = [
156156
]
157157

158158
[tool.tbump.version]
159-
current = "0.9.0"
159+
current = "0.9.1"
160160
regex = '''
161161
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
162162
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

src/assignment_list/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export class AssignmentListWidget extends Widget {
131131
checkNbGraderVersion() {
132132
var warning = this.node.getElementsByClassName('version_error')[0] as HTMLDivElement;
133133
warning.hidden=false;
134-
requestAPI<any>('nbgrader_version?version='+"0.9.0")
134+
requestAPI<any>('nbgrader_version?version='+"0.9.1")
135135
.then(response => {
136136
if (!response['success']) {
137137
warning.innerText = response['message'];

src/course_list/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class CourseListWidget extends Widget {
7070
}
7171

7272
checkNbGraderVersion() {
73-
let nbgrader_version = '0.9.0';
73+
let nbgrader_version = '0.9.1';
7474
requestAPI<any>('nbgrader_version?version='+nbgrader_version)
7575
.then(response => {
7676
if (!response['success']) {

src/validate_assignment/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { requestAPI } from './validateassignment';
1010

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

13-
var nbgrader_version = "0.9.0"; // TODO: hardcoded value
13+
var nbgrader_version = "0.9.1"; // TODO: hardcoded value
1414

1515
class ValidateButton extends ToolbarButton {
1616
private _buttonCallback = this.newButtonCallback();

0 commit comments

Comments
 (0)