Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not use dev version yet #46

Merged
merged 2 commits into from
Jul 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Project Jupyter"

# The full version, including alpha/beta/rc tags
release = "0.6.0.dev0"
release = "0.5.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion hatch_jupyter_builder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .utils import is_stale, npm_builder # noqa F401

__version__ = "0.6.0.dev0"
__version__ = "0.5.2"
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "hatch-jupyter-builder"
version = "0.6.0.dev0"
version = "0.5.2"
description = 'A hatch plugin to help build Jupyter packages'
readme = "README.md"
requires-python = ">=3.7"
Expand Down Expand Up @@ -64,11 +64,10 @@ omit = [
skip = ["check-links"]

[tool.jupyter-releaser.options]
post-version-spec = "dev"
ignore-glob = ["tests/data/**/README.md"]

[tool.tbump.version]
current = "0.6.0.dev0"
current = "0.5.2"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion tests/test_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def test_create_cmdclass_migration():
for item in results["added"]:
assert (
"remoteEntry." in item
or "license_files/LICENSE.txt" in item
or "licenses/LICENSE.txt" in item
or "dist-info/entry_points.txt" in item
)

Expand Down