Skip to content

Commit

Permalink
Bumped version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacosta committed Jan 19, 2018
1 parent d5df23a commit a35c0bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,13 @@ if [ "${pep8}" == 1 ]; then
python_files=$(git diff --name-only --cached -- *.py)
pep8_output=""
for file in "${python_files[@]}"; do
file_output=$(pylint --rcfile="${pkg_dir}/.pylintrc" -r n "${file}")
tfile="$(mktemp)"
pylint --rcfile="${pkg_dir}/.pylintrc" -r n "${file}" &> "${tfile}"
file_output=""
if [ "$?" != 0 ]; then
file_output=$(cat "${tfile}")
rm -rf "${tfile}"
fi
if [ "${file_output}" != "" ]; then
pep8_output=${pep8_output}"\n"${file_output}
fi
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1rc1'
release = '1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ptrie/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
###
# Global variables
###
VERSION_INFO = (1, 1, 0, 'candidate', 1)
VERSION_INFO = (1, 1, 0, 'final', 0)


###
Expand Down

0 comments on commit a35c0bf

Please sign in to comment.