Skip to content

Commit

Permalink
bump to 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
harelba committed Nov 30, 2019
1 parent 80942c6 commit e29f9c7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions do-manual-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,28 @@

set -e

VERSION=2.0.5

echo "Packing binary for $TRAVIS_OS_NAME"

if [[ "$TRAVIS_OS_NAME" == "osx" || "$TRAVIS_OS_NAME" == "linux" ]]
then
echo "Packing $TRAVIS_OS_NAME installer - packing binary"
pyci pack binary
pyci github upload-asset --asset q-$(uname -m)-$(uname -s) --release 2.0.2
echo "Packing $TRAVIS_OS_NAME installer - uploading"
pyci github upload-asset --asset q-$(uname -m)-$(uname -s) --release $VERSION
else
echo "Packing windows installer - packing binary"
pyci pack binary
echo "Packing windows installer - listing files"
find `pwd` -ls | grep -v \.git/
echo "Packing windows installer - packing nsis"
BINARY_LOCATION="c:\\Users\\travis\\build\\harelba\\q\\q-AMD64-Windows.exe"
pyci pack nsis --binary-path $BINARY_LOCATION --version 2.0.2.0
pyci pack nsis --binary-path $BINARY_LOCATION --version ${VERSION}.0
echo "Packing windows installer - uploading"
pyci github upload-asset --asset $BINARY_LOCATION --release 2.0.2
pyci github upload-asset --asset $BINARY_LOCATION --release $VERSION
SETUP_LOCATION="c:\\Users\\travis\\build\\harelba\\q\\q-AMD64-Windows-installer.exe"
pyci github upload-asset --asset $SETUP_LOCATION --release 2.0.2
echo "done"
pyci github upload-asset --asset $SETUP_LOCATION --release $VERSION
fi

echo "done"
4 changes: 2 additions & 2 deletions q/q.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

# Copyright (C) 2012-2018 Harel Ben-Attia
# Copyright (C) 2012-2019 Harel Ben-Attia
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -31,7 +31,7 @@
from __future__ import division
from __future__ import print_function

q_version = "2.0.2"
q_version = "2.0.5"

__all__ = [ 'QTextAsData' ]

Expand Down

0 comments on commit e29f9c7

Please sign in to comment.