Skip to content

Commit

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

nbgrader-0.9.0-alpha.0.tgz: c72cc32e0c4b69b5af31c252fa4a1d056fae0c613c68702b2b2b91e7c51d4197

nbgrader-0.9.0a0-py3-none-any.whl: 48ffb05f4864d98a583e84084ce74213d4754290d0a3414626f888f767e73fbd

nbgrader-0.9.0a0.tar.gz: c5fbe85d4dc2060bff28d85b68b60990193644fd117c4aa461ad01ad60fc0ddb
  • Loading branch information
brichet committed Jul 18, 2023
1 parent 1b5ffa9 commit fc6d524
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 @@ -4,6 +4,22 @@ A summary of changes to nbgrader.

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

## 0.9.0a0

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

### Enhancements made

- Compatibility with Notebook7 and jupyterLab4 [#1684](https://github.com/jupyter/nbgrader/pull/1684) ([@brichet](https://github.com/brichet))

### Contributors to this release

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

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

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

## 0.8.4

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.3...83a0429e32e5d146a638dfeef6cee9fad7f277ab))
Expand All @@ -24,8 +40,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, 9, 0, "a", "0")
__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.8.4",
"version": "0.9.0-alpha.0",
"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 @@ -48,7 +48,7 @@ dependencies = [
"requests>=2.26",
"sqlalchemy>=1.4,<3",
]
version = "0.8.4"
version = "0.9.0a0"

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

[tool.tbump.version]
current = "0.8.4"
current = "0.9.0a0"
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.8.4")
requestAPI<any>('nbgrader_version?version='+"0.9.0a0")
.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.8.4';
let nbgrader_version = '0.9.0a0';
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.8.4"; // TODO: hardcoded value
var nbgrader_version = "0.9.0a0"; // TODO: hardcoded value

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

0 comments on commit fc6d524

Please sign in to comment.