Skip to content

Commit 87e0d74

Browse files
authored
RLS: v0.6.0 (#104)
1 parent 2b13ee3 commit 87e0d74

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Diff for: CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# CHANGELOG
22

3-
## v0.5.1 2023-04-21
3+
## v0.6.0 2023-04-21
44

5-
This is a minor release to improve our packaging infrastructure and to support the latest SQLAlchemy version.
5+
This is a minor release to improve our packaging infrastructure and to support several new versions of dependencies.
66

7-
### Merged PRs
7+
### Breaking changes
88

9+
- ‼️ BREAKING: Drop Python 3.7, add Python 3.11, unpin myst-nb in docs [#96](https://github.com/executablebooks/jupyter-cache/pull/96) ([@choldgraf](https://github.com/choldgraf))
10+
11+
### Updated versions
12+
13+
- Update nbclient requirement from <0.6,>=0.2 to >=0.2,<0.8 [#103](https://github.com/executablebooks/jupyter-cache/pull/103) ([@choldgraf](https://github.com/choldgraf))
914
- UPDATE: SQLAlchemy 2.0 [#93](https://github.com/executablebooks/jupyter-cache/pull/93) ([@jzluo](https://github.com/jzluo), [@choldgraf](https://github.com/choldgraf))
1015
- 🔧 MAINTAIN: setuptools -> flit [#82](https://github.com/executablebooks/jupyter-cache/pull/82) ([@chrisjsewell](https://github.com/chrisjsewell))
1116

Diff for: jupyter_cache/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: never import anything here, in order to maintain CLI speed
2-
__version__ = "0.5.1"
2+
__version__ = "0.6.0"
33

44

55
def get_cache(path, cache_cls=None):

Diff for: pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ rtd = [
5656
"nbdime",
5757
"ipykernel",
5858
"jupytext",
59+
# TODO: MyST-NB pins jupyter-cache, so this may create unresolved environments
60+
# But if we pin to `main` then we cannot build wheels. Need to fix.
5961
"myst-nb",
6062
"sphinx-book-theme",
6163
"sphinx-copybutton",

0 commit comments

Comments
 (0)