Skip to content

Commit

Permalink
build 15;
Browse files Browse the repository at this point in the history
  • Loading branch information
twiddli committed Jan 14, 2018
1 parent 81f8c97 commit 2dfe08d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@
env_python = r".\env\Scripts\python" if sys.platform.startswith("win") else "./env/bin/python"

changes = """
- Misc. bugfixes
From previous builds:
- require python 3.5 and up
- make HPX usable on posix
- added search_item api function
- added 'offset' parameter to various api functions
- updated docs
- addeded support for TAR.GZ, TAR.BZ2 and TAR.XZ files
From previous build:
- fix error in extracting rarfiles
- add compression step in server-client message exchange
- updated docs to reflect compression step
Expand Down
1 change: 1 addition & 0 deletions gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def from_gui():

if constants.is_posix:
# need to make a request or else it won't work in other processes
# related to https://github.com/requests/requests/issues/3752
import requests # noqa: E402
try:
requests.get("https://google.com", timeout=0.1)
Expand Down
4 changes: 2 additions & 2 deletions happypanda/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
updater_key = "updater"

## VERSIONING ##
build = 114
version = (0, 0, 3)
build = 115
version = (0, 0, 4)
version_db = (0, 0, 1)
version_web = (0, 0, 3)
version_str = ".".join(str(x) for x in version)
Expand Down

0 comments on commit 2dfe08d

Please sign in to comment.