Skip to content

Commit

Permalink
Release 4.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jul 7, 2022
1 parent 45aa28b commit 035bf11
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions docs/changelog.rst
@@ -1,6 +1,18 @@
Changes in jupyter-core
=======================

4.11
----

4.11.0
~~~~~~

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

* Use hatch build backend. (:ghpull:`265`)
* ``is_hidden``: Use normalized paths. (:ghpull:`271`)

4.10
----

Expand Down
4 changes: 2 additions & 2 deletions jupyter_core/version.py
Expand Up @@ -5,8 +5,8 @@

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

version_info = VersionInfo(4, 10, 0, "final", 0)
__version__ = "4.10.0"
version_info = VersionInfo(4, 11, 0, "final", 0)
__version__ = "4.11.0"

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=0.25"]
requires = ["hatchling>=1.0"]
build-backend = "hatchling.build"

[project]
Expand Down

0 comments on commit 035bf11

Please sign in to comment.