Skip to content

Commit

Permalink
Updates for new release to better handle platform scripts. Bumped ver…
Browse files Browse the repository at this point in the history
…sion.
  • Loading branch information
jeffrimko committed Jul 30, 2017
1 parent c1104eb commit 247db86
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= PopPage Changelog

== poppage-0.3.1 (2017-07-30)
=== Highlights
- Better platform specific script handling.

== poppage-0.3.0 (2017-07-29)
=== Highlights
- Added custom YAML tags for reading files and reading from CLI commands.
Expand Down
2 changes: 1 addition & 1 deletion app/poppage.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
##==============================================================#

#: Application version string.
__version__ = "0.3.0"
__version__ = "0.3.1"

#: Key separator.
KEYSEP = "::"
Expand Down
4 changes: 2 additions & 2 deletions app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

SCRIPTS = []
if "Windows" == system():
SCRIPTS = ["poppage.bat"]
SCRIPTS = ["poppage.bat", "poppage.py"]
if "Linux" == system():
SCRIPTS = ["poppage"]

Expand All @@ -22,7 +22,7 @@

setup(
name = "poppage",
version = "0.3.0",
version = "0.3.1",
author = "Jeff Rimko",
author_email = "[email protected]",
description = "Utility for generating files and directories.",
Expand Down

0 comments on commit 247db86

Please sign in to comment.