Skip to content

Commit

Permalink
Update for 0.14.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan McLellan <[email protected]>
  • Loading branch information
btm committed Dec 2, 2016
1 parent 6b141d5 commit 90f5c30
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Note: this log contains only changes from knife-ec2 release 0.8.0 and later
-- it does not contain the changes from prior releases. To view change history
prior to release 0.8.0, please visit the [source repository](https:/chef/knife-ec2/commits).

## Latest Release 0.13.1
## Latest Release 0.14.0 (2016-12-02)
* [knife-ec2:#442](https:/chef/knife-ec2/pull/442) Added support to show flavor list in json format.
* [knife-ec2:#439](https:/chef/knife-ec2/pull/439) Allow to accept multiple security group ids using --security-group-id option multiple times and added deprecated message for comma seprated --security-group-ids option.

## Latest Release 0.13.0 (2016-08-05)
## Release 0.13.0 (2016-08-05)
* [knife-ec2:#438](https:/chef/knife-ec2/pull/438) Specs for ec2 server list
* [knife-ec2:#437](https:/chef/knife-ec2/pull/437) Fix --aws-credential-file issues
* [knife-ec2:#436](https:/chef/knife-ec2/pull/436) basic is not a valid setting for winrm_ssl_verify_mode
Expand Down Expand Up @@ -44,8 +44,7 @@ prior to release 0.8.0, please visit the [source repository](https:/
* [knife-ec2:#363](https:/chef/knife-ec2/pull/363) Add ssl config user data for ssl transport, if required append to user\_data script specified by user.
* [knife-ec2:#319](https:/chef/knife-ec2/pull/319) Pointing docs at itself. This is better then the non-existent chef.io docs.

## Latest Release: 0.12.0 (2015-10-1)

## Release: 0.12.0 (2015-10-1)
* [knife-ec2:#305](https:/chef/knife-ec2/pull/305) Updates to support standard .aws/credentials file
* [knife-ec2 #354](https:/chef/knife-ec2/pull/354) knife-windows 1.0.0 dependency, support for validatorless bootstrap, other Chef 12 bootstrap options
* [knife-ec2 #356](https:/chef/knife-ec2/pull/356) Added --forward-agent option
Expand Down
4 changes: 0 additions & 4 deletions CONTRIBUTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,3 @@ This file is reset every time a new release is done. The contents of this file a
Example Contribution:
* **kalistec**: Improved file resource greatly.
-->
# knife-ec2 0.13.0:

* **quentindemetz**: Added ability to use `Classic Link`.
* **eherot**: Added ability to attach `Network Interfaces`.
6 changes: 3 additions & 3 deletions DOC_CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ This file is reset everytime when a new release is done. Contents of this file i

# knife-ec2 doc changes

Documentation changes are given below for **knife-ec2 version 0.13.1**.
Documentation changes are given below for **knife-ec2 version 0.14.0**.

## `knife ec2 server create` subcommand changes

### `--security-group-id` option

The `--security-group-id` option allows user to specify security group id for server. required when using VPC. User can use this opiton multiple times when specifying multiple security groups. e.g. -g sg-e985168d -g sg-e7f06383 -g sg-ec1b7e88.
The `--security-group-id` option allows the user to specify the security group id for server and is required when using VPC. Multiple security groups may be specified by using this option multiple times, e.g. `-g sg-e985168d -g sg-e7f06383 -g sg-ec1b7e88`.

### `--security-group-ids` option

The security group ids for this server; required when using VPC. Provide values in format --security-group-ids 'X,Y,Z'. [DEPRECATED] This option will be removed in future release. Use the new --security-group-id option. ",
The previous option for specifying security groups, `--security-group-ids` (plural), is deprecated in favor of the `--security-group-id` option which mimics the more standard behavior for supplying multiple arguments across the ecosystem. This option will be removed in future release.
10 changes: 5 additions & 5 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Example Note:
Details about the thing that changed that needs to get included in the Release Notes in markdown.
-->

# knife-ec2 0.13.1 release notes:
# knife-ec2 0.14.0 release notes:

This release of `knife-ec2` contains minor bug fixes.

## Features added in knife-ec2 0.13.1
## Features added in knife-ec2 0.14.0

* `--security-group-id` option to specify security group id for the server. User can use this opiton multiple times when specifying multiple security groups. e.g. -g sg-e985168d -g sg-e7f06383 -g sg-ec1b7e88.
* Added support to `flavor list` in json format using `--format json` option.

* Added support to show flavor list in json format using `--format json` option.
* `--security-group-id` option to specify security groups for the server. This opiton can be used multiple times when specifying multiple security groups. e.g. `-g sg-e985168d -g sg-e7f06383 -g sg-ec1b7e88`.

***Note:*** The `--security-group-ids` option will be removed in future release. Use the new --security-group-id option.
***Note:*** The `--security-group-ids` option will be removed in a future release. Use the new `--security-group-id` option.
2 changes: 1 addition & 1 deletion lib/knife-ec2/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Knife
module Ec2
VERSION = "0.13.0"
VERSION = "0.14.0"
MAJOR, MINOR, TINY = VERSION.split('.')
end
end

0 comments on commit 90f5c30

Please sign in to comment.