Skip to content

Commit 3efd00e

Browse files
committed
Release 5.0.0rc0
1 parent 51be5af commit 3efd00e

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

docs/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changes in jupyter-core
22
=======================
33

4+
5.0
5+
---
6+
7+
5.0.0rc0
8+
~~~~~~~~
9+
10+
`on
11+
GitHub <https://github.com/jupyter/jupyter_core/releases/tag/5.0.0rc0>`__
12+
13+
* Try to detect if we are in a virtual environment and change path precedence accordingly. (:ghpull:`286`)
14+
* Update broken link to `Contributing` guide. (:ghpull:`289`)
15+
* Add current working directory as first config path. (:ghpull:`291`)
16+
* Use platformdirs for path locations. (:ghpull:`292`)
17+
18+
419
4.11
520
----
621

jupyter_core/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"])
77

8-
version_info = VersionInfo(4, 11, 1, "final", 0)
9-
__version__ = "4.11.1"
8+
version_info = VersionInfo(5, 0, 0, "rc", 0)
9+
__version__ = "5.0.0rc0"
1010

1111
_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": "", "dev": "dev"}
1212

0 commit comments

Comments
 (0)