Skip to content

Commit

Permalink
Version 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
abalijepalli committed Jan 19, 2017
1 parent 58cbed0 commit d88866c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .scripts/pyinstaller-sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ plat=`uname`



v1=$(<mosaic/_version.py)
ver=`echo $v1 | cut -d= -f2 | cut -d\" -f2`
build=`git rev-parse --short HEAD`
# v1=$(<mosaic/_version.py)
# ver=`echo $v1 | cut -d= -f2 | cut -d\" -f2`
# ver=`git describe --abbrev=0 --tags | sed 's/v//g' | sed 's/\ //g'`
# build=`git rev-parse --short HEAD`
ver=`python -c 'import mosaic; print mosaic.__version__'`
build=`python -c 'import mosaic; print mosaic.__build__'`

read -d '' info1 <<-"EOF"
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
++++++++++++++++++++++++++++++++++++++++++


**v1.3.2**

- Fixed event partiioning bugs.
- [GUI] UI tweaks.

**v1.3.1**

- Bug fix release.
Expand Down
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ Report problems using our `issue tracker <https://github.com/usnistgov/mosaic/is
Change Log
=================================

**v1.3.2**

- Fixed event partiioning bugs.
- [GUI] UI tweaks.

**v1.3.1**

- Bug fix release.
Expand Down
1 change: 1 addition & 0 deletions mosaic/utilities/resource_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def resource_path(filename):
"icon.png",
"icons/icon_100px.png",
"commit-hash",
"version-hash",
"icons/error-128.png",
"icons/warning-128.png",
"mosaicgui/highlight-spec/python.json",
Expand Down

0 comments on commit d88866c

Please sign in to comment.