Skip to content

Commit 2e25d32

Browse files
committed
add release documentation and bump version to latest release
1 parent b2b4c85 commit 2e25d32

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Releasing
2+
3+
First, bump the version to final release version.
4+
5+
Then follow these steps (which expect a Bash shell; they might not work with other shells).
6+
```
7+
git clean -dffx
8+
pip install -q 517
9+
python -m pep517.build .
10+
export script_version=`python -c "from pytest_jupyter._version import __version__; print(__version__)"`
11+
git commit -a -m "Release $script_version"
12+
git tag $script_version
13+
git push --all
14+
git push --tags
15+
pip install twine
16+
twine check dist/*
17+
twine upload dist/*
18+
```

pytest_jupyter/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = "0.0.1"
4+
__version__ = "0.0.2.dev0"
55

0 commit comments

Comments
 (0)