File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ v0.17.1, Mar 5 2014 -- Fixed bug in InSAFE setup
2
+
1
3
v0.17.0, Jan 7 2013 -- Improved API doc generation and added a task to push
2
4
docs to server. Fixes for creation of template_postgis with different pg
3
5
versions. Added task to postgresql for building osm2pgsql. Added task to
Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ def show_environment():
34
34
35
35
36
36
def setup_env ():
37
- """Things to do regardless of whether command is local or remote."""
37
+ """Things to do regardless of whether command is local or remote.
38
+
39
+ Todo - many of these env.fg settings should be module specific...
40
+
41
+ """
38
42
if env .fg is not None :
39
43
fastprint ('Environment already set!\n ' )
40
44
return
Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ echo "Have you updated changelog?"
4
4
echo " Have you updated the version in setup.py?"
5
5
echo " Have you updated README & Docs?"
6
6
read -sn 1 -p " Press any key to continue..."
7
+ echo
8
+
9
+ VERSION=` cat setup.py | grep version | grep -o " [0-9}*\.[0-9]*\.[0-9]*" `
10
+ TAG_VERSION=` echo $VERSION | sed ' s/\./_/g' `
11
+ echo " Version: " $VERSION
12
+ echo " Tag Version: " $TAG_VERSION
13
+ git tag -s version-$TAG_VERSION -m " Version $VERSION "
14
+ git push --tags origin version-$TAG_VERSION
15
+
7
16
python setup.py sdist upload
8
17
9
- fab -H linfiniti3 sync_docs_to_server
18
+ fab -H linfiniti3 sync_docs_to_server
You can’t perform that action at this time.
0 commit comments