Skip to content

Commit

Permalink
Merge pull request #27 from fireflycons/dev
Browse files Browse the repository at this point in the history
Release notes added
  • Loading branch information
fireflycons authored Apr 16, 2019
2 parents 3a15729 + f2f2dcf commit a9393fe
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PSCloudFormation/PSCloudFormation.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PSCloudFormation.psm1'

# Version number of this module.
ModuleVersion = '1.0.4'
ModuleVersion = '1.0.5'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -101,7 +101,7 @@
ExternalModuleDependencies = @('AWSPowerShell')

# A URL to the license for this module.
LicenseUri = 'https://github.com/fireflycons/PSCloudFormation/LICENSE'
LicenseUri = 'https://github.com/fireflycons/PSCloudFormation/blob/master/LICENSE'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/fireflycons/PSCloudFormation'
Expand All @@ -110,7 +110,7 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = "First major release. Now supports PowerShell Core/Linux!"
ReleaseNotes = "https://github.com/fireflycons/PSCloudFormation/blob/master/RELEASENOTES.md"

} # End of PSData hashtable

Expand Down
57 changes: 57 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Release Notes

## CURRENT (v1.0.5)

16 Apr 2019

* Handle the case where the shell has no AWS region default. This was causing exceptions to be thrown that did not really indicate what the issue was. Now the execption message more accurately identifies the issue with suggestions to correct the problem.
* Add this release notes file.
* Correct license link in manifest.
* Link this file in manifest.

## v1.0

14 Apr 2019

Add a new .NetCore target to provide additional PSGallery package 'PSCloudFormation.netcore` - Now supports PowerShell Core/Linux.

## v0.5

10 Apr 2019

* Improve format of stack event output and fix `SubString` bug in `Write-PSObject`
* Fix event timestamp bug. PowerShell API returns local times not UTC.
* Add `-ParameterFile` argument to support passing of stack parameters in a JSON file.

## v0.4

Log all cloudformation events to console (not only failures), including events from nested stacks. Use colour to indicate different states.

## v0.3.1

11 Mar 2019

Fixed a bug where the bucket name generated for pushing oversize templates to was not globally unique.

## v0.3

9 Mar 2019

Bugs and enhancements

* Handle large templates : bug
* Wait for rollback if update fails : bug
* Changeset should show resource action : enhancement
* `Update-PSCFNStack` not detecting newly added stack parameter : bug

## v0.2

9 Oct 2018

This release forwards the rest of the relevant command line arguments of `New-CFNStack` and `Update-CFNStack`, a notable omission being `-UsePreviousTemplate`.

## v0.1

25 Sep 2018

First release.

0 comments on commit a9393fe

Please sign in to comment.