Skip to content

Commit 88767e4

Browse files
committed
bumped version to 0.4.6
1 parent bca1d51 commit 88767e4

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

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.5'
4+
__version__ = '0.4.6'

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

rever.xsh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
$PROJECT = 'jupyter-archive'
2+
3+
$ACTIVITIES = ['run_tests', 'version_bump', 'tag', 'push_tag', 'pypi', 'publish_npm', 'ghrelease']
4+
5+
$VERSION_BUMP_PATTERNS = [('jupyter_archive/_version.py', '__version__\s*=.*', "__version__ = '$VERSION'"),
6+
('package.json', '"version"\s*:.*,', '"version": "$VERSION",')]
7+
8+
$PUSH_TAG_REMOTE = '[email protected]:hadim/jupyter-archive.git'
9+
$GITHUB_ORG = 'hadim'
10+
$GITHUB_REPO = 'jupyter-archive'
11+
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

0 commit comments

Comments
 (0)