diff --git a/docs/changelog.rst b/docs/changelog.rst index 1383919..ea82a54 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,18 @@ Changes in jupyter-core ======================= +4.11 +---- + +4.11.0 +~~~~~~ + +`on +GitHub `__ + +* Use hatch build backend. (:ghpull:`265`) +* ``is_hidden``: Use normalized paths. (:ghpull:`271`) + 4.10 ---- diff --git a/jupyter_core/version.py b/jupyter_core/version.py index b591af0..fb5fc22 100644 --- a/jupyter_core/version.py +++ b/jupyter_core/version.py @@ -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"} diff --git a/pyproject.toml b/pyproject.toml index 7826b15..31dbc91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=0.25"] +requires = ["hatchling>=1.0"] build-backend = "hatchling.build" [project]