Skip to content

Commit

Permalink
Merge pull request #62 from mayn/release-v0.5.0
Browse files Browse the repository at this point in the history
Release v0.5.0
  • Loading branch information
mayn committed Oct 13, 2017
2 parents 44e71b4 + d6edb72 commit d7f26dc
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@



## 0.5.0 (October 10, 2017)
Thanks to all the hacktoberfest participants that made this release possible.


### FEATURES:
* builder/AmazonChroot: add support for packer's amazon chroot builder [GH-19]
* builder/AmazonEbsSurrogate: add support for packer's amazon ebs surrogate builder [GH-19]
* builder/AmazonEbsVolume: add support for packer's amazon ebs volume builder [GH-19]
* builder/LXC: add support for packer's lxc builder [GH-37]
* builder/LXD: add support for packer's lxd builder [GH-33]
* builder/OracleOCI: add support for packer's oracle oci builder [GH-50]
* post_processor/VSphereTemplate: add support for packer's vsphere template builder [GH-60]

### IMPROVEMENTS:
* add python3 compatibility [GH-35]

### MISC:
* remove duplicated keys from HyperV and VirtualboxIso builders [GH-61]
* add licence and classifiers to setup.py [GH-59]
* add github pull request template [GH-47]
* appveyor support for testing on windows [GH-36]
* appveyor add python3 testing[GH-39]
* appveyor tox testenv, default PYTHON to empty string[ GH-51]
* appveyor fix python 2.6 build environment [GH-53]
* remove leading ellipsis from README.rst [GH-29]
* add amazon builders to supported list [GH-32]
* add lxc builder to supported list [GH-41]
* improve test coverage for list of builders [GH-34]



## 0.4.0 (Augutst 20, 2017)

### FEATURES:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='packerlicious',
version='0.4.0',
version='0.5.0',
author='Matthew Aynalem',
author_email='maynalem@gmail.com',
packages=find_packages('src'),
Expand Down
2 changes: 1 addition & 1 deletion src/packerlicious/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from .template import Template

__version__ = "0.4.0"
__version__ = "0.5.0"


class Ref(AWSHelperFn):
Expand Down
2 changes: 1 addition & 1 deletion src/packerlicious/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ class OracleOCI(PackerBuilder):
OracleOCI Builder
https://www.packer.io/docs/builders/oracle-oci.html
"""
resource_type = "orcale_oci"
resource_type = "oracle-oci"

props = {
'availability_domain': (str, True),
Expand Down

0 comments on commit d7f26dc

Please sign in to comment.