Skip to content

Commit 2952f33

Browse files
committed
release
1 parent bff1012 commit 2952f33

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

mongogrant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.2.2"
1+
__version__ = "0.3.0"
22

33
from mongogrant.client import Client

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='mongogrant',
9-
version="0.2.2",
9+
version="0.3.0",
1010
packages=find_packages(),
1111
include_package_data=True,
1212
url='https://github.com/materialsproject/mongogrant/',
@@ -39,4 +39,4 @@
3939
[console_scripts]
4040
mgrant=mongogrant.scripts.mgrant:cli
4141
''',
42-
)
42+
)

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@task
99
def setver(c, patch=False, new_ver=''):
1010
if (not patch and not new_ver) or (patch and new_ver):
11-
raise Exception("Either use --patch or specify e.g. --full='x.y.z.")
11+
raise Exception("Either use --patch or specify e.g. --new-ver='x.y.z.")
1212
if patch:
1313
v = [int(x) for x in __version__.split(".")]
1414
v[2] += 1
@@ -33,4 +33,4 @@ def setver(c, patch=False, new_ver=''):
3333
def publish(c):
3434
c.run("rm dist/*.*", warn=True)
3535
c.run("python setup.py sdist bdist_wheel")
36-
c.run("twine upload dist/*")
36+
c.run("twine upload dist/*")

0 commit comments

Comments
 (0)