Skip to content

Commit b22ff38

Browse files
committed
bumped version to 0.4.4
1 parent 65ffd2c commit b22ff38

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,9 @@ Under BSD license. See [LICENSE](LICENSE).
7575

7676
## Release a new version
7777

78-
- Edit `jupyter_archive/_version.py` and set the version.
79-
- Edit `package.json` and set the version.
80-
- Commit `git commit -am "Bump to <your_version>"`
81-
- Tag: `git tag <your_version>`
82-
- Upload to NPM: `yarn publish --access=public`
83-
- Build Python package: `rm -fr dist/ && python setup.py sdist bdist_wheel`
84-
- Upload Python package: `twine upload dist/*`
78+
- Install those packages: `conda install twine rever`
79+
- Run: `rever <VERSION>`
8580

8681
- Edit `jupyter_archive/_version.py` and set the version back to `.dev0`.
8782
- Edit `package.json` and set the version back to `-dev`.
8883
- Commit `git commit -am "Bump to dev"`
89-
- Push: `git push origin master --tags`

jupyter_archive/_version.py

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

4-
version_info = (0, 4, 4, "dev")
5-
__version__ = ".".join(map(str, version_info))
4+
__version__ = '0.4.4'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hadim/jupyter-archive",
3-
"version": "0.4.4-dev",
3+
"version": "0.4.4",
44
"description": "Make, download and extract archive files.",
55
"keywords": [
66
"jupyter",

0 commit comments

Comments
 (0)