Skip to content

Commit

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

nbgrader-0.9.1-py3-none-any.whl: 6bb42e4d810d2644bfd9b9e00477a14f179be7ebad0ce98cea33ef8c5441eb13

nbgrader-0.9.1.tar.gz: 88e3718fb4e6f75dd0b90afea3c5ad0abf14fd23ead4ce7a5c2be5eb6fa327d2

nbgrader-0.9.1.tgz: 86a8c91c0143a82d2f1d03850206166e5babd0a9ef8503b69ea8036fbe1dd2d0
  • Loading branch information
brichet committed Sep 5, 2023
1 parent 7922f76 commit b9515d8
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ A summary of changes to nbgrader.

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

## 0.9.1

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0...7922f769c4b30e9fb9260a7b8a39e7365373f980))

### Maintenance and upkeep improvements

- Labextension compatibility [#1827](https://github.com/jupyter/nbgrader/pull/1827) ([@brichet](https://github.com/brichet))

### Contributors to this release

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

[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-09-04..2023-09-05&type=Issues)

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

## 0.9.0

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

[@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)

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

## 0.9.0a1

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0a0...2d7dc7c0b758c5f61a34b7cc4a0fd2f04d748bb4))
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, 9, 0, "", "")
version_info = (0, 9, 1, "", "")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
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.9.0",
"version": "0.9.1",
"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",
"PyYAML>=6.0",
]
version = "0.9.0"
version = "0.9.1"

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

[tool.tbump.version]
current = "0.9.0"
current = "0.9.1"
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 @@ -131,7 +131,7 @@ export class AssignmentListWidget extends Widget {
checkNbGraderVersion() {
var warning = this.node.getElementsByClassName('version_error')[0] as HTMLDivElement;
warning.hidden=false;
requestAPI<any>('nbgrader_version?version='+"0.9.0")
requestAPI<any>('nbgrader_version?version='+"0.9.1")
.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 @@ -70,7 +70,7 @@ export class CourseListWidget extends Widget {
}

checkNbGraderVersion() {
let nbgrader_version = '0.9.0';
let nbgrader_version = '0.9.1';
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 @@ -10,7 +10,7 @@ import { requestAPI } from './validateassignment';

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

var nbgrader_version = "0.9.0"; // TODO: hardcoded value
var nbgrader_version = "0.9.1"; // TODO: hardcoded value

class ValidateButton extends ToolbarButton {
private _buttonCallback = this.newButtonCallback();
Expand Down

0 comments on commit b9515d8

Please sign in to comment.