diff --git a/CHANGELOG.md b/CHANGELOG.md index 1de89f8b1..36ec57741 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ A summary of changes to nbgrader. +## 0.9.0a1 + +([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.0a0...2d7dc7c0b758c5f61a34b7cc4a0fd2f04d748bb4)) + +### Bugs fixed + +- Fix binder exchange [#1803](https://github.com/jupyter/nbgrader/pull/1803) ([@brichet](https://github.com/brichet)) + +### Maintenance and upkeep improvements + +- Update notebook dependency to final release [#1805](https://github.com/jupyter/nbgrader/pull/1805) ([@brichet](https://github.com/brichet)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbgrader/graphs/contributors?from=2023-07-18&to=2023-07-21&type=c)) + +[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-07-18..2023-07-21&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2023-07-18..2023-07-21&type=Issues) + + + ## 0.9.0a0 ([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.4...1b5ffa93db15012f15ac17bf475eab2420fe73bf)) @@ -18,8 +38,6 @@ A summary of changes to nbgrader. [@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2023-06-16..2023-07-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2023-06-16..2023-07-18&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Ajtpio+updated%3A2023-06-16..2023-07-18&type=Issues) - - ## 0.8.4 ([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.3...83a0429e32e5d146a638dfeef6cee9fad7f277ab)) diff --git a/nbgrader/_version.py b/nbgrader/_version.py index e07b97dfa..c9ab971bc 100644 --- a/nbgrader/_version.py +++ b/nbgrader/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 9, 0, "a", "0") +version_info = (0, 9, 0, "a", "1") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/package.json b/package.json index 354a548a2..162a7ed97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nbgrader", - "version": "0.9.0-alpha.0", + "version": "0.9.0-alpha.1", "description": "nbgrader nodejs dependencies", "keywords": [ "jupyter", diff --git a/pyproject.toml b/pyproject.toml index ac7b42fc1..d97d2f6a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "requests>=2.26", "sqlalchemy>=1.4,<3", ] -version = "0.9.0a0" +version = "0.9.0a1" [project.license] file = "LICENSE" @@ -155,7 +155,7 @@ before-build-python = [ ] [tool.tbump.version] -current = "0.9.0a0" +current = "0.9.0a1" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))? diff --git a/src/assignment_list/index.ts b/src/assignment_list/index.ts index a2a6a2187..28161f4b3 100644 --- a/src/assignment_list/index.ts +++ b/src/assignment_list/index.ts @@ -131,7 +131,7 @@ export class AssignmentListWidget extends Widget { checkNbGraderVersion() { var warning = this.node.getElementsByClassName('version_error')[0] as HTMLDivElement; warning.hidden=false; - requestAPI('nbgrader_version?version='+"0.9.0a0") + requestAPI('nbgrader_version?version='+"0.9.0a1") .then(response => { if (!response['success']) { warning.innerText = response['message']; diff --git a/src/course_list/index.ts b/src/course_list/index.ts index a72114f0a..cc5a9c5d5 100644 --- a/src/course_list/index.ts +++ b/src/course_list/index.ts @@ -70,7 +70,7 @@ export class CourseListWidget extends Widget { } checkNbGraderVersion() { - let nbgrader_version = '0.9.0a0'; + let nbgrader_version = '0.9.0a1'; requestAPI('nbgrader_version?version='+nbgrader_version) .then(response => { if (!response['success']) { diff --git a/src/validate_assignment/index.ts b/src/validate_assignment/index.ts index 5c994893a..07d31adfa 100644 --- a/src/validate_assignment/index.ts +++ b/src/validate_assignment/index.ts @@ -10,7 +10,7 @@ import { requestAPI } from './validateassignment'; import { showNbGraderDialog, validate } from '../common/validate'; -var nbgrader_version = "0.9.0a0"; // TODO: hardcoded value +var nbgrader_version = "0.9.0a1"; // TODO: hardcoded value class ValidateButton extends ToolbarButton { private _buttonCallback = this.newButtonCallback();