Skip to content

Commit adf8523

Browse files
authored
Update change log & version for point release (#7152)
1 parent 925dd25 commit adf8523

File tree

9 files changed

+20
-8
lines changed

9 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 2021.8.12 (17 August 2021)
4+
5+
### Fixes
6+
7+
1. Fix interrupt kernel in native interactive window when executing a #%% cell.
8+
([#6983](https://github.com/Microsoft/vscode-jupyter/issues/6983))
9+
1. Populate the interactive window variable explorer when focus is in the #%% Python file.
10+
([#6993](https://github.com/Microsoft/vscode-jupyter/issues/6993))
11+
1. Reinitialize kernels after a restart, including resetting current working directory and rerunning startup commands.
12+
([#7016](https://github.com/Microsoft/vscode-jupyter/issues/7016))
13+
1. Restore support for `jupyter.collapseCellInputCodeByDefault` in native interactive window.
14+
([#7031](https://github.com/Microsoft/vscode-jupyter/issues/7031))
15+
1. Fix restart kernel in native interactive window when executing a #%% cell.
16+
([#7081](https://github.com/Microsoft/vscode-jupyter/issues/7081))
17+
1. Ensure variable explorer handles kernel restarts.
18+
([#7126](https://github.com/Microsoft/vscode-jupyter/issues/7126))
19+
20+
321
## 2021.8.11 (3 August 2021)
422

523
### Enhancements

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ async function updateBuildNumber(args) {
173173
versionParts.length > 2 ? versionParts[2].replace(/(\d+)/, args.buildNumber) : args.buildNumber;
174174
const newVersion =
175175
versionParts.length > 1
176-
? `${versionParts[0]}.${versionParts[1]}.11${buildNumberPortion.substring(2)}`
176+
? `${versionParts[0]}.${versionParts[1]}.12${buildNumberPortion.substring(2)}`
177177
: packageJson.version;
178178
packageJson.version = newVersion;
179179

news/2 Fixes/6983.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/6993.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/7016.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/7031.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/7081.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/7126.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jupyter",
33
"displayName": "Jupyter",
4-
"version": "2021.8.0",
4+
"version": "2021.8.12",
55
"description": "Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.",
66
"publisher": "ms-toolsai",
77
"enableProposedApi": true,

0 commit comments

Comments
 (0)