Skip to content

Commit

Permalink
Release 5.0.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Sep 28, 2022
1 parent 51be5af commit 3efd00e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changes in jupyter-core
=======================

5.0
---

5.0.0rc0
~~~~~~~~

`on
GitHub <https://github.com/jupyter/jupyter_core/releases/tag/5.0.0rc0>`__

* Try to detect if we are in a virtual environment and change path precedence accordingly. (:ghpull:`286`)
* Update broken link to `Contributing` guide. (:ghpull:`289`)
* Add current working directory as first config path. (:ghpull:`291`)
* Use platformdirs for path locations. (:ghpull:`292`)


4.11
----

Expand Down
4 changes: 2 additions & 2 deletions jupyter_core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

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

version_info = VersionInfo(4, 11, 1, "final", 0)
__version__ = "4.11.1"
version_info = VersionInfo(5, 0, 0, "rc", 0)
__version__ = "5.0.0rc0"

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

Expand Down

0 comments on commit 3efd00e

Please sign in to comment.