Skip to content

Commit c7acd72

Browse files
committed
bumped version to 0.4.9
1 parent ff62c30 commit c7acd72

File tree

4 files changed

+8
-18
lines changed

4 files changed

+8
-18
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,3 @@ Under BSD license. See [LICENSE](LICENSE).
7777

7878
- Install those packages: `conda install twine rever`
7979
- Run: `rever <VERSION>`
80-
81-
- Edit `jupyter_archive/_version.py` and set the version back to `.dev0`.
82-
- Edit `package.json` and set the version back to `-dev`.
83-
- Commit `git commit -am "Bump to dev"`

jupyter_archive/_version.py

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

4-
__version__ = '0.4.8'
4+
__version__ = '0.4.9'

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.8",
3+
"version": "0.4.9",
44
"description": "Make, download and extract archive files.",
55
"keywords": [
66
"jupyter",

rever.xsh

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
from rever.activities.command import command
2+
3+
command('run_tests', 'pytest jupyter_archive/', '')
4+
command('publish_npm', 'yarn publish --access=public --new-version $VERSION', '')
5+
16
$PROJECT = 'jupyter-archive'
27

38
$ACTIVITIES = ['run_tests', 'version_bump', 'tag', 'push_tag', 'pypi', 'publish_npm', 'ghrelease']
@@ -9,15 +14,4 @@ $PUSH_TAG_REMOTE = '[email protected]:hadim/jupyter-archive.git'
914
$GITHUB_ORG = 'hadim'
1015
$GITHUB_REPO = 'jupyter-archive'
1116

12-
13-
from rever.activity import activity
14-
15-
@activity
16-
def run_tests():
17-
echo "Run tests"
18-
pytest jupyter_archive/
19-
20-
@activity
21-
def publish_npm():
22-
echo "Publish package to NPM"
23-
yarn publish --access=public --new-version $VERSION
17+
# git commit -am "Bump to dev"

0 commit comments

Comments
 (0)