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

Bump version for full semver #190

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.1
current_version = 1.0.0
commit = True
tag = False

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build: ## build python/javascript
python -m build .

develop: ## install to site-packages in editable mode
python -m pip install --upgrade build docker-compose jupyterlab pip setuptools twine wheel
python -m pip install --upgrade build jupyterlab pip setuptools twine wheel
python -m pip install -vvv .[develop]

install: ## install to site-packages
Expand Down Expand Up @@ -40,13 +40,13 @@ teardown-infra-win:
teardown-infra-common:

dockerup:
${DOCKER}-compose -f ci/docker-compose.yml up -d
${DOCKER} compose -f ci/docker-compose.yml up -d

dockerdown:
${DOCKER}-compose -f ci/docker-compose.yml down || echo "can't teardown docker compose"
${DOCKER} compose -f ci/docker-compose.yml down || echo "can't teardown docker compose"

dockerlogs:
${DOCKER}-compose -f ci/docker-compose.yml logs
${DOCKER} compose -f ci/docker-compose.yml logs

testpy: ## Clean and Make unit tests
python -m pytest -v jupyterfs/tests --junitxml=junit.xml --cov=jupyterfs --cov-report=xml:.coverage.xml --cov-branch --cov-fail-under=20 --cov-report term-missing
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-fs",
"version": "0.4.1",
"version": "1.0.0",
"description": "A Filesystem-like mult-contents manager backend for Jupyter",
"author": "The jupyter-fs authors",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion jupyterfs/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

__version__ = "0.4.1"
__version__ = "1.0.0"
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "hatchling.build"
[project]
name = "jupyter-fs"
description = "A Filesystem-like mult-contents manager backend for Jupyter"
version = "0.4.1"
version = "1.0.0"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
Expand Down Expand Up @@ -111,6 +111,10 @@ exclude = [
"docs",
]

[tool.hatch.build.targets.wheel]
packages = ["jupyterfs"]


[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = [
Expand Down
Loading