Skip to content

Commit

Permalink
Bump to 0.9.2.dev501
Browse files Browse the repository at this point in the history
  • Loading branch information
Gehock committed Mar 28, 2024
1 parent af629b8 commit 27bb919
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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, 2, ".dev", "500")
version_info = (0, 9, 2, ".dev", "501")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies = [
"sqlalchemy>=1.4,<3",
"PyYAML>=6.0",
]
version = "0.9.2.dev500"
version = "0.9.2.dev501"

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

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

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

0 comments on commit 27bb919

Please sign in to comment.