Skip to content

Commit

Permalink
Update change log & version for point release (#7152)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne authored Aug 16, 2021
1 parent 925dd25 commit adf8523
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 2021.8.12 (17 August 2021)

### Fixes

1. Fix interrupt kernel in native interactive window when executing a #%% cell.
([#6983](https://github.com/Microsoft/vscode-jupyter/issues/6983))
1. Populate the interactive window variable explorer when focus is in the #%% Python file.
([#6993](https://github.com/Microsoft/vscode-jupyter/issues/6993))
1. Reinitialize kernels after a restart, including resetting current working directory and rerunning startup commands.
([#7016](https://github.com/Microsoft/vscode-jupyter/issues/7016))
1. Restore support for `jupyter.collapseCellInputCodeByDefault` in native interactive window.
([#7031](https://github.com/Microsoft/vscode-jupyter/issues/7031))
1. Fix restart kernel in native interactive window when executing a #%% cell.
([#7081](https://github.com/Microsoft/vscode-jupyter/issues/7081))
1. Ensure variable explorer handles kernel restarts.
([#7126](https://github.com/Microsoft/vscode-jupyter/issues/7126))


## 2021.8.11 (3 August 2021)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async function updateBuildNumber(args) {
versionParts.length > 2 ? versionParts[2].replace(/(\d+)/, args.buildNumber) : args.buildNumber;
const newVersion =
versionParts.length > 1
? `${versionParts[0]}.${versionParts[1]}.11${buildNumberPortion.substring(2)}`
? `${versionParts[0]}.${versionParts[1]}.12${buildNumberPortion.substring(2)}`
: packageJson.version;
packageJson.version = newVersion;

Expand Down
1 change: 0 additions & 1 deletion news/2 Fixes/6983.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/6993.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/7016.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/7031.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/7081.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/7126.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jupyter",
"displayName": "Jupyter",
"version": "2021.8.0",
"version": "2021.8.12",
"description": "Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.",
"publisher": "ms-toolsai",
"enableProposedApi": true,
Expand Down

0 comments on commit adf8523

Please sign in to comment.