Skip to content

Commit

Permalink
bumped version to 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hadim committed Oct 11, 2019
1 parent ff62c30 commit c7acd72
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,3 @@ Under BSD license. See [LICENSE](LICENSE).

- Install those packages: `conda install twine rever`
- Run: `rever <VERSION>`

- Edit `jupyter_archive/_version.py` and set the version back to `.dev0`.
- Edit `package.json` and set the version back to `-dev`.
- Commit `git commit -am "Bump to dev"`
2 changes: 1 addition & 1 deletion jupyter_archive/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Project Jupyter.
# Distributed under the terms of the Modified BSD License.

__version__ = '0.4.8'
__version__ = '0.4.9'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hadim/jupyter-archive",
"version": "0.4.8",
"version": "0.4.9",
"description": "Make, download and extract archive files.",
"keywords": [
"jupyter",
Expand Down
18 changes: 6 additions & 12 deletions rever.xsh
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from rever.activities.command import command

command('run_tests', 'pytest jupyter_archive/', '')
command('publish_npm', 'yarn publish --access=public --new-version $VERSION', '')

$PROJECT = 'jupyter-archive'

$ACTIVITIES = ['run_tests', 'version_bump', 'tag', 'push_tag', 'pypi', 'publish_npm', 'ghrelease']
Expand All @@ -9,15 +14,4 @@ $PUSH_TAG_REMOTE = 'git@github.com:hadim/jupyter-archive.git'
$GITHUB_ORG = 'hadim'
$GITHUB_REPO = 'jupyter-archive'


from rever.activity import activity

@activity
def run_tests():
echo "Run tests"
pytest jupyter_archive/

@activity
def publish_npm():
echo "Publish package to NPM"
yarn publish --access=public --new-version $VERSION
# git commit -am "Bump to dev"

0 comments on commit c7acd72

Please sign in to comment.