Skip to content

Commit

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

nbclassic-0.4.8-py3-none-any.whl: cbf05df5842b420d5cece0143462380ea9d308ff57c2dc0eb4d6e035b18fbfb3

nbclassic-0.4.8.tar.gz: c74d8a500f8e058d46b576a41e5bc640711e1032cf7541dde5f73ea49497e283
  • Loading branch information
blink1073 committed Nov 3, 2022
1 parent 5749f00 commit 604e679
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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

## 0.4.8

([Full Changelog](https://github.com/jupyter/nbclassic/compare/v0.4.7...5749f00a36cb80cecc04b684715013e59b227a41))

### Enhancements made

- Playwright Testing Conversion [#170](https://github.com/jupyter/nbclassic/pull/170) ([@ericsnekbytes](https://github.com/ericsnekbytes))

### Bugs fixed

- Handle async and sync contents managers [#172](https://github.com/jupyter/nbclassic/pull/172) ([@blink1073](https://github.com/blink1073))

### Maintenance and upkeep improvements

- Playwright port [#139](https://github.com/jupyter/nbclassic/pull/139) ([@ericsnekbytes](https://github.com/ericsnekbytes))

### Documentation improvements

- Documentation for the extensions configurator [#174](https://github.com/jupyter/nbclassic/pull/174) ([@echarles](https://github.com/echarles))
- Updating contributing docs for playwright tests [#171](https://github.com/jupyter/nbclassic/pull/171) ([@RRosio](https://github.com/RRosio))

### Other merged PRs

- Update docs to remove install command [#173](https://github.com/jupyter/nbclassic/pull/173) ([@dleen](https://github.com/dleen))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter/nbclassic/graphs/contributors?from=2022-10-20&to=2022-11-03&type=c))

[@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)

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

## 0.4.7

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

[@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)

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

## 0.4.6

([Full Changelog](https://github.com/jupyter/nbclassic/compare/v0.4.5...638141b299d2cbaae2062239c8db6ae6fd83e762))
Expand Down
2 changes: 1 addition & 1 deletion nbclassic/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

# Version string must appear intact for tbump versioning
__version__ = '0.5.0.dev0'
__version__ = '0.4.8'

# Build up version_info tuple for backwards compatibility
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
Expand Down
2 changes: 1 addition & 1 deletion nbclassic/static/base/js/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define(function(){
// tree
jglobal('SessionList','tree/js/sessionlist');

Jupyter.version = "0.5.0.dev0";
Jupyter.version = "0.4.8";
Jupyter._target = '_blank';

return Jupyter;
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ post-version-spec = "dev"
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/**/*.*"]

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

0 comments on commit 604e679

Please sign in to comment.