Skip to content

Commit

Permalink
bumped version to 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hadim committed Oct 11, 2019
1 parent bca1d51 commit 88767e4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
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.5'
__version__ = '0.4.6'
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.5",
"version": "0.4.6",
"description": "Make, download and extract archive files.",
"keywords": [
"jupyter",
Expand Down
23 changes: 23 additions & 0 deletions rever.xsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$PROJECT = 'jupyter-archive'

$ACTIVITIES = ['run_tests', 'version_bump', 'tag', 'push_tag', 'pypi', 'publish_npm', 'ghrelease']

$VERSION_BUMP_PATTERNS = [('jupyter_archive/_version.py', '__version__\s*=.*', "__version__ = '$VERSION'"),
('package.json', '"version"\s*:.*,', '"version": "$VERSION",')]

$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

0 comments on commit 88767e4

Please sign in to comment.