Skip to content

Commit 3b73620

Browse files
authored
RLS: v0.5.1 (#94)
1 parent 84c3530 commit 3b73620

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# CHANGELOG
22

3+
## v0.5.1 2023-04-21
4+
5+
This is a minor release to improve our packaging infrastructure and to support the latest SQLAlchemy version.
6+
7+
### Merged PRs
8+
9+
- UPDATE: SQLAlchemy 2.0 [#93](https://github.com/executablebooks/jupyter-cache/pull/93) ([@jzluo](https://github.com/jzluo), [@choldgraf](https://github.com/choldgraf))
10+
- 🔧 MAINTAIN: setuptools -> flit [#82](https://github.com/executablebooks/jupyter-cache/pull/82) ([@chrisjsewell](https://github.com/chrisjsewell))
11+
12+
### Contributors to this release
13+
14+
The following people contributed discussions, new ideas, code and documentation contributions, and review.
15+
See [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports).
16+
17+
([GitHub contributors page for this release](https://github.com/executablebooks/jupyter-cache/graphs/contributors?from=2022-01-25&to=2023-04-21&type=c))
18+
19+
@AakashGfude ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3AAakashGfude+updated%3A2022-01-25..2023-04-21&type=Issues)) | @choldgraf ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Acholdgraf+updated%3A2022-01-25..2023-04-21&type=Issues)) | @chrisjsewell ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Achrisjsewell+updated%3A2022-01-25..2023-04-21&type=Issues)) | @jstac ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Ajstac+updated%3A2022-01-25..2023-04-21&type=Issues)) | @jzluo ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Ajzluo+updated%3A2022-01-25..2023-04-21&type=Issues)) | @kloczek ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Akloczek+updated%3A2022-01-25..2023-04-21&type=Issues)) | @pre-commit-ci ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyter-cache+involves%3Apre-commit-ci+updated%3A2022-01-25..2023-04-21&type=Issues))
20+
21+
322
## 0.5.0 - 2021-01-25
423

524
♻️ REFACTOR: package API/CLI/documentation ([#74](https://github.com/executablebooks/jupyter-cache/pull/74))

Diff for: docs/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"repository_branch": "master",
3636
"path_to_docs": "docs",
3737
"home_page_in_toc": True,
38-
"logo_only": True,
3938
}
4039

4140
# Add any paths that contain templates here, relative to this directory.

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.0"
2+
__version__ = "0.5.1"
33

44

55
def get_cache(path, cache_cls=None):

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ rtd = [
5757
"ipykernel",
5858
"jupytext",
5959
"myst-nb @ git+https://github.com/executablebooks/MyST-NB.git",
60-
"sphinx-book-theme~=0.3.0",
60+
"sphinx-book-theme",
6161
"sphinx-copybutton",
6262
]
6363
testing = [

0 commit comments

Comments
 (0)