Skip to content
This repository was archived by the owner on Feb 1, 2021. It is now read-only.

Commit c7de2a4

Browse files
committed
bump version to 1.0.0
1 parent 3b9d10a commit c7de2a4

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

bump_version.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
if [ "$1" != "" ]; then
4+
sed -i "" "s/\(__version__[ ]*=\).*/\1 \"$1\"/g" setup.py
5+
git add .
6+
git commit -m "bump version to $1"
7+
git tag $1
8+
git push origin master
9+
git push --tags
10+
make
11+
fi

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env/python
22
# -*- coding: utf-8 -*-
33

4-
__version__ = "0.0.1"
4+
__version__ = "1.0.0"
55
__author__ = "Dan Loewenherz"
66
__copyright__ = "Copyright 2015, Lionheart Software"
77
__maintainer__ = "Dan Loewenherz"

0 commit comments

Comments
 (0)