Skip to content

Commit 1853b2e

Browse files
authored
Merge pull request #15 from Zsailer/rm-dev
remove dev version
2 parents 4cd1ae8 + 9d036ac commit 1853b2e

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v2
23-
23+
2424
- name: Base Setup
2525
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2626

@@ -33,4 +33,4 @@ jobs:
3333
pip check
3434
- name: Test with pytest
3535
run: |
36-
pytest -vv --cov=notebook_shim notebook_shim --cov-report term-missing:skip-covered
36+
python -m pytest -vv --cov=notebook_shim notebook_shim --cov-report term-missing:skip-covered

notebook_shim/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 2, 0, ".dev", "0")
2-
__version__ = "0.2.0.dev0"
1+
version_info = (0, 2, 0, "", "")
2+
__version__ = "0.2.0"

pyproject.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test = [
4242
path = "notebook_shim/_version.py"
4343

4444
[tool.tbump.version]
45-
current = "0.2.0.dev0"
45+
current = "0.2.0"
4646
regex = '''
4747
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4848
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
@@ -60,10 +60,6 @@ version_template = '({major}, {minor}, {patch}, "{channel}", "{release}")'
6060
src = "notebook_shim/_version.py"
6161
version_template = "{major}.{minor}.{patch}{channel}{release}"
6262

63-
[[tool.tbump.file]]
64-
src = "pyproject.toml"
65-
version_template = "{major}.{minor}.{patch}{channel}{release}"
66-
6763
[[tool.tbump.field]]
6864
name = "channel"
6965
default = ""
@@ -83,6 +79,3 @@ testpaths = [
8379

8480
[tool.jupyter-releaser]
8581
skip = ["check-links"]
86-
87-
[tool.jupyter-releaser.options]
88-
post-version-spec = "dev"

0 commit comments

Comments
 (0)