Skip to content

Commit

Permalink
Version bump to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anaynayak committed Aug 17, 2019
1 parent 83f020f commit 75659c5
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.0.0] - 2019-08-16

### Added
- Bump to Python3

## [1.0.4] - 2017-12-14

### Added
Expand Down
11 changes: 5 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,16 @@ Features
.. image:: https://anaynayak.github.io/buildnotify/images/projectlist.png

Building from source
=======
====================

The ubuntu package is pretty old! This might mean you need to build from source.

To do so do the following::

git clone https://github.com/anaynayak/buildnotify
cd buildnotify
chmod u+x setup.py
sh setup.sh
sudo setup.py install
virtualenv -p python3 venv
source venv/bin/activate.fish
pip install -e setup.py


this will put buildnotifyapplet.py on your path in ``/usr/local/bin``
this will put buildnotifyapplet.py at ``./venv/bin/buildnotifyapplet.py``
1 change: 1 addition & 0 deletions buildnotifylib/core/http_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ def connect(self, server, timeout):
auth = (server.username, server.password) if server.has_creds() else None
response = requests.get(server.url, verify=not server.skip_ssl_verification, headers=headers, auth=auth,
timeout=timeout)
response.encoding = 'utf-8'
response.raise_for_status()
return response.text
2 changes: 1 addition & 1 deletion buildnotifylib/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from os import getenv

VERSION = "1.0.4"
VERSION = "2.0.0"


def version(key='CIRCLE_BUILD_NUM'):
Expand Down
2 changes: 1 addition & 1 deletion data/cctray.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Projects>
<Project name="cleanup-artifacts-B" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.828" lastBuildTime="2009-06-12T06:54:35" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/cleanup-artifacts-B"/>
<Project name="ganymatic-R3.0-I" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.716" lastBuildTime="2009-02-28T04:58:57" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/ganymatic-R3.0-I"/>
<Project name="ganymaticPack-R3.0-I" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.132" lastBuildTime="2009-02-28T02:27:35" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/ganymaticPack-R3.0-I"/>
<Project name="ganymaticPack»R3.0-I" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.132" lastBuildTime="2009-02-28T02:27:35" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/ganymaticPack-R3.0-I"/>
<Project name="orbit-I" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.459" lastBuildTime="2009-05-12T19:52:41" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/orbit-I"/>
<Project name="orbit-M" activity="Sleeping" lastBuildStatus="Failure" lastBuildLabel="build.17" lastBuildTime="2008-08-07T15:23:15" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/orbit-M"/>
<Project name="orbit-R" activity="Sleeping" lastBuildStatus="Success" lastBuildLabel="build.18" lastBuildTime="2008-09-01T11:44:56" webUrl="http://build.eclipse.org:9777/dashboard/tab/build/detail/orbit-R"/>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readme():


def version():
return getenv('BUILD_VERSION', "1.0.4")
return getenv('BUILD_VERSION', "2.0.0")


setup(name='BuildNotify',
Expand Down
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[DEFAULT]
Depends: python-pyqt5, python-dateutil, python-tz, python-keyring
XS-Python-Version: >= 2.7
XS-Python-Version: >= 3.7
MIME-Desktop-Files: buildnotify.desktop

0 comments on commit 75659c5

Please sign in to comment.