Skip to content

Commit

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

nbgrader-0.9.0-alpha.1.tgz: c401f0bea5b2c2dbdebc5ac40865061f3aa3ef57e90d058dc1987be2db35a6db

nbgrader-0.9.0a1-py3-none-any.whl: 4794b2b5f1342dbd3a2eafd0bc5e43e4b43497961eaa633cddb3c3a8d3fa8a42

nbgrader-0.9.0a1.tar.gz: 4ee4ddcf2512eda0e4f032a1a746c65c2ae33d28c782e72dd6570c77649f5bd1
  • Loading branch information
brichet committed Jul 21, 2023
1 parent 2d7dc7c commit f37eede
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,26 @@ A summary of changes to nbgrader.

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

## 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)

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

## 0.9.0a0

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.4...1b5ffa93db15012f15ac17bf475eab2420fe73bf))
Expand All @@ -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)

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

## 0.8.4

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.8.3...83a0429e32e5d146a638dfeef6cee9fad7f277ab))
Expand Down
2 changes: 1 addition & 1 deletion 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:])
2 changes: 1 addition & 1 deletion 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",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -48,7 +48,7 @@ dependencies = [
"requests>=2.26",
"sqlalchemy>=1.4,<3",
]
version = "0.9.0a0"
version = "0.9.0a1"

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

[tool.tbump.version]
current = "0.9.0a0"
current = "0.9.0a1"
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
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.0a0")
requestAPI<any>('nbgrader_version?version='+"0.9.0a1")
.then(response => {
if (!response['success']) {
warning.innerText = response['message'];
Expand Down
2 changes: 1 addition & 1 deletion src/course_list/index.ts
Expand Up @@ -70,7 +70,7 @@ export class CourseListWidget extends Widget {
}

checkNbGraderVersion() {
let nbgrader_version = '0.9.0a0';
let nbgrader_version = '0.9.0a1';
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
Expand Up @@ -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();
Expand Down

0 comments on commit f37eede

Please sign in to comment.