Skip to content

Commit

Permalink
Bumped version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrimko committed Oct 24, 2017
1 parent c67cc4a commit 6b2a8ed
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
= PopPage Changelog

== poppage-0.5.3 (2017-10-23)
=== Added
- New `debug` CLI function.
- YAML tag `!def` to handle special logic for `__def__` YAML key.

== poppage-0.5.2 (2017-10-23)
=== Fixed
- The OUTPATH defined in the `__def__` YAML key is now rooted at the utility working directory rather than the defaults file location.
Expand Down
5 changes: 5 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ The following custom YAML tags are provided:

- `!file` - Reads value from a file as a string.
- `!yaml` - Reads value from file as YAML.
- `!def` - Like `!yaml` but only for populating the `__def__` key.
- `!cmd` - Reads value from a CLI command output.
- `!ask` - Prompts the user to input a value.

Expand Down Expand Up @@ -118,6 +119,10 @@ Check out these examples:
inpath: template.jinja2
execute: python {{outpath}}

- Populate the options using a YAML file:

__def__: !def mydefs.yaml

=== Cookiecutter Compatiblity
PopPage should be compatible with many https://github.com/audreyr/cookiecutter[cookiecutter] templates. Using https://github.com/solarnz/cookiecutter-avr as an example, check for the variables in the template:

Expand Down
2 changes: 1 addition & 1 deletion app/poppage.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
##==============================================================#

#: Application version string.
__version__ = "0.5.2"
__version__ = "0.5.3"

#: Key separator.
KEYSEP = "::"
Expand Down
2 changes: 1 addition & 1 deletion app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

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

0 comments on commit 6b2a8ed

Please sign in to comment.