Skip to content

Commit 604e679

Browse files
committed
Publish 0.4.8
SHA256 hashes: nbclassic-0.4.8-py3-none-any.whl: cbf05df5842b420d5cece0143462380ea9d308ff57c2dc0eb4d6e035b18fbfb3 nbclassic-0.4.8.tar.gz: c74d8a500f8e058d46b576a41e5bc640711e1032cf7541dde5f73ea49497e283
1 parent 5749f00 commit 604e679

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

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

5+
## 0.4.8
6+
7+
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v0.4.7...5749f00a36cb80cecc04b684715013e59b227a41))
8+
9+
### Enhancements made
10+
11+
- Playwright Testing Conversion [#170](https://github.com/jupyter/nbclassic/pull/170) ([@ericsnekbytes](https://github.com/ericsnekbytes))
12+
13+
### Bugs fixed
14+
15+
- Handle async and sync contents managers [#172](https://github.com/jupyter/nbclassic/pull/172) ([@blink1073](https://github.com/blink1073))
16+
17+
### Maintenance and upkeep improvements
18+
19+
- Playwright port [#139](https://github.com/jupyter/nbclassic/pull/139) ([@ericsnekbytes](https://github.com/ericsnekbytes))
20+
21+
### Documentation improvements
22+
23+
- Documentation for the extensions configurator [#174](https://github.com/jupyter/nbclassic/pull/174) ([@echarles](https://github.com/echarles))
24+
- Updating contributing docs for playwright tests [#171](https://github.com/jupyter/nbclassic/pull/171) ([@RRosio](https://github.com/RRosio))
25+
26+
### Other merged PRs
27+
28+
- Update docs to remove install command [#173](https://github.com/jupyter/nbclassic/pull/173) ([@dleen](https://github.com/dleen))
29+
30+
### Contributors to this release
31+
32+
([GitHub contributors page for this release](https://github.com/jupyter/nbclassic/graphs/contributors?from=2022-10-20&to=2022-11-03&type=c))
33+
34+
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Ablink1073+updated%3A2022-10-20..2022-11-03&type=Issues) | [@dleen](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Adleen+updated%3A2022-10-20..2022-11-03&type=Issues) | [@echarles](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Aecharles+updated%3A2022-10-20..2022-11-03&type=Issues) | [@ericsnekbytes](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Aericsnekbytes+updated%3A2022-10-20..2022-11-03&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3ARRosio+updated%3A2022-10-20..2022-11-03&type=Issues)
35+
36+
<!-- <END NEW CHANGELOG ENTRY> -->
37+
538
## 0.4.7
639

740
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v0.4.6...964941a4428cfbb385b5f8f557496582cf4d88d0))
@@ -24,8 +57,6 @@
2457

2558
[@echarles](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Aecharles+updated%3A2022-10-12..2022-10-20&type=Issues) | [@mcrutch](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Amcrutch+updated%3A2022-10-12..2022-10-20&type=Issues)
2659

27-
<!-- <END NEW CHANGELOG ENTRY> -->
28-
2960
## 0.4.6
3061

3162
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v0.4.5...638141b299d2cbaae2062239c8db6ae6fd83e762))

nbclassic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import re
66

77
# Version string must appear intact for tbump versioning
8-
__version__ = '0.5.0.dev0'
8+
__version__ = '0.4.8'
99

1010
# Build up version_info tuple for backwards compatibility
1111
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'

nbclassic/static/base/js/namespace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ define(function(){
7373
// tree
7474
jglobal('SessionList','tree/js/sessionlist');
7575

76-
Jupyter.version = "0.5.0.dev0";
76+
Jupyter.version = "0.4.8";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ post-version-spec = "dev"
2424
ignore-glob = ["docs/source/examples/Notebook/Working With Markdown Cells.ipynb", "docs-translations/**/README.md", "docs/source/contributing.rst", "docs/source/examples/Notebook/JavaScript Notebook Extensions.ipynb", "CHANGELOG.md", "nbclassic/static/components/**/*.*"]
2525

2626
[tool.tbump.version]
27-
current = "0.5.0.dev0"
27+
current = "0.4.8"
2828
regex = '''
2929
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
3030
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

0 commit comments

Comments
 (0)