Skip to content

Commit e08c0a5

Browse files
committed
Publish 0.2.1
SHA256 hashes: notebook_shim-0.2.1-py3-none-any.whl: 278395f4af66657c963ea487d2972539657bf4776e26a987b53dc78c1c468a71 notebook_shim-0.2.1.tar.gz: 1e774011efc013a53284a7fdc33f893b65a625a83a77c3c64bd6958af4ca6178
1 parent b72af74 commit e08c0a5

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

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

5+
## 0.2.1
6+
7+
([Full Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.0...b72af7411fa41115c3025a95f261e10bf0221fb0))
8+
9+
### Bugs fixed
10+
11+
- Add config file [#23](https://github.com/jupyter/notebook_shim/pull/23) ([@dleen](https://github.com/dleen))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyter/notebook_shim/graphs/contributors?from=2022-10-17&to=2022-11-02&type=c))
16+
17+
[@dleen](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Adleen+updated%3A2022-10-17..2022-11-02&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 0.2.0
622

723
([Full Changelog](https://github.com/jupyter/notebook_shim/compare/v0.1.0...4e4228d7bb2d2e04cc204db3de7f2f567d65c38a))
@@ -21,8 +37,6 @@
2137

2238
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Ablink1073+updated%3A2022-02-10..2022-10-17&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Ajtpio+updated%3A2022-02-10..2022-10-17&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3AZsailer+updated%3A2022-02-10..2022-10-17&type=Issues)
2339

24-
<!-- <END NEW CHANGELOG ENTRY> -->
25-
2640
## 0.1.0
2741

2842
([Full Changelog](https://github.com/jupyterlab/notebook_shim/compare/first-commit...5b433fa298f741c7d71c9a3e7e85f17b2207300f))

notebook_shim/_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 2, 0, "", "")
2-
__version__ = "0.2.0"
1+
version_info = (0, 2, 1, "", "")
2+
__version__ = "0.2.1"

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ test = [
4141
"pytest-console-scripts",
4242
]
4343

44+
4445
[tool.hatch.version]
4546
path = "notebook_shim/_version.py"
4647

4748
[tool.tbump.version]
48-
current = "0.2.0"
49+
current = "0.2.1"
4950
regex = '''
5051
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
5152
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

0 commit comments

Comments
 (0)