Skip to content

Commit

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

jupyter-nbgrader-0.9.5.tgz: 576ae2ab22f8883aff9a9d1f491748a485f8f42b4379f726de48f56d5fcc2dd6

nbgrader-0.9.5-py3-none-any.whl: 9a16f2858e74c06a5f20ee904d35987db9d6d4bdc339e3113121262fc4f2065c

nbgrader-0.9.5.tar.gz: 1ea898f3b1cd15ebd1f407591ac94b454244566876f0bc8740f5b1d501dc076a
  • Loading branch information
brichet committed Jan 17, 2025
1 parent 73e1375 commit 8563de4
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ A summary of changes to nbgrader.

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

## 0.9.5

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.4...73e137511ac1dc02e95790d4fd6d4d88dab42325))

### Bugs fixed

- Revert #1915 for security reason [#1947](https://github.com/jupyter/nbgrader/pull/1947) ([@brichet](https://github.com/brichet))

### Maintenance and upkeep improvements

- Bump cross-spawn from 6.0.5 to 6.0.6 [#1943](https://github.com/jupyter/nbgrader/pull/1943) ([@dependabot](https://github.com/dependabot))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter/nbgrader/graphs/contributors?from=2024-11-18&to=2025-01-17&type=c))

[@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2024-11-18..2025-01-17&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Adependabot+updated%3A2024-11-18..2025-01-17&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2024-11-18..2025-01-17&type=Issues)

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

## 0.9.4

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.3...ba2a40491ff0f9ae0a08baeb9cf0c92ab670a05c))
Expand Down Expand Up @@ -33,8 +53,6 @@ A summary of changes to nbgrader.

[@AlirezaT99](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3AAlirezaT99+updated%3A2024-06-20..2024-11-18&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Abrichet+updated%3A2024-06-20..2024-11-18&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Adependabot+updated%3A2024-06-20..2024-11-18&type=Issues) | [@franswel](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Afranswel+updated%3A2024-06-20..2024-11-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Agithub-actions+updated%3A2024-06-20..2024-11-18&type=Issues) | [@jeflem](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Ajeflem+updated%3A2024-06-20..2024-11-18&type=Issues) | [@lahwaacz](https://github.com/search?q=repo%3Ajupyter%2Fnbgrader+involves%3Alahwaacz+updated%3A2024-06-20..2024-11-18&type=Issues)

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

## 0.9.3

([Full Changelog](https://github.com/jupyter/nbgrader/compare/v0.9.2...f3878c749fee3733f29f91fb5f6c1c81a51e2a4c))
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, 4, "", "")
version_info = (0, 9, 5, "", "")
__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": "@jupyter/nbgrader",
"version": "0.9.4",
"version": "0.9.5",
"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 @@ -50,7 +50,7 @@ dependencies = [
"sqlalchemy>=1.4,<3",
"PyYAML>=6.0",
]
version = "0.9.4"
version = "0.9.5"

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

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

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

0 comments on commit 8563de4

Please sign in to comment.