Skip to content

Commit 523b038

Browse files
committed
Publish 1.3.3
SHA256 hashes: nbclassic-1.3.3-py3-none-any.whl: dcee5149aa6aa01846c7458d6394b29b325213b5e118ee14c80d689122e0e4f2 nbclassic-1.3.3.tar.gz: 434228763f8cee754318cd6dfa42370db191af630dabab8e30bafc8c1aa3eee6
1 parent 153295c commit 523b038

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.3.3
6+
7+
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v1.3.2...153295cb571ff369b09bed5145047722adf5dc55))
8+
9+
### Bugs fixed
10+
11+
- Copy static assets to legacy paths for notebook 6 compatibility [#375](https://github.com/jupyter/nbclassic/pull/375) ([@RRosio](https://github.com/RRosio))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Bump actions/create-github-app-token from 2.1.1 to 2.1.4 [#376](https://github.com/jupyter/nbclassic/pull/376) ([@dependabot](https://github.com/dependabot))
16+
- Copy static assets to legacy paths for notebook 6 compatibility [#375](https://github.com/jupyter/nbclassic/pull/375) ([@RRosio](https://github.com/RRosio))
17+
- Bump actions/setup-node from 4.4.0 to 5.0.0 [#374](https://github.com/jupyter/nbclassic/pull/374) ([@dependabot](https://github.com/dependabot))
18+
- Bump actions/setup-python from 5.6.0 to 6.0.0 [#373](https://github.com/jupyter/nbclassic/pull/373) ([@dependabot](https://github.com/dependabot))
19+
20+
### Contributors to this release
21+
22+
([GitHub contributors page for this release](https://github.com/jupyter/nbclassic/graphs/contributors?from=2025-09-04&to=2025-09-16&type=c))
23+
24+
[@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Adependabot+updated%3A2025-09-04..2025-09-16&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3ARRosio+updated%3A2025-09-04..2025-09-16&type=Issues)
25+
26+
<!-- <END NEW CHANGELOG ENTRY> -->
27+
528
## 1.3.2
629

730
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v1.3.1...4d36b0b201c4692100243f943a24dbff132d42c6))
@@ -40,8 +63,6 @@
4063

4164
[@danyeaw](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Adanyeaw+updated%3A2025-05-06..2025-09-04&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3Adependabot+updated%3A2025-05-06..2025-09-04&type=Issues) | [@RRosio](https://github.com/search?q=repo%3Ajupyter%2Fnbclassic+involves%3ARRosio+updated%3A2025-05-06..2025-09-04&type=Issues)
4265

43-
<!-- <END NEW CHANGELOG ENTRY> -->
44-
4566
## 1.3.1
4667

4768
([Full Changelog](https://github.com/jupyter/nbclassic/compare/v1.3.0...ce70ed4c9272b93b91067287396287a03fb43e90))

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__ = '1.3.3.dev0'
8+
__version__ = '1.3.3'
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 = "1.3.3.dev0";
76+
Jupyter.version = "1.3.3";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99

1010
[project]
1111
name = "nbclassic"
12-
version = "1.3.3.dev0"
12+
version = "1.3.3"
1313

1414
description = "Jupyter Notebook as a Jupyter Server extension."
1515
readme = "README.md"
@@ -245,7 +245,7 @@ field = [
245245
]
246246

247247
[tool.tbump.version]
248-
current = "1.3.3.dev0"
248+
current = "1.3.3"
249249
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
250250

251251
[tool.tbump.git]

0 commit comments

Comments
 (0)