Skip to content

Commit 66d1dc6

Browse files
committed
Bump v1.0.0
1 parent 98a6f6b commit 66d1dc6

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
## v1.0.0 (2021-02-22)
2+
3+
This release contains some major changes for Packer v1.7 support. If you want to use Packer < v1.7, please use v0.x versions.
4+
5+
### Breaking Changes
6+
7+
- [#165](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/165): Remove the AWS builder dependency
8+
- `clean_resource_name` function support was removed from the post-processor attributes.
9+
- Undocumented AWS access config attributes were removed.
10+
- `assume_role`
11+
- `shared_credentials_file`
12+
- `decode_authorization_messages`
13+
- `insecure_skip_tls_verify`
14+
- `max_retries`
15+
- `region`
16+
- `skip_credential_validation`
17+
- `vault_aws_engine`
18+
- `aws_polling`
19+
- [#166](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/166): Change license: MIT -> MPL 2.0
20+
- Changed to meet licensing requirements due to porting code from Packer core.
21+
- [#167](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/167): Upgrade the plugin to be compatible with Packer v1.7
22+
- Drop support for Packer < v1.7
23+
- [#169](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/169) [#171](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/171): Make the plugin multi component plugin
24+
- Support automatic installation by `packer init`.
25+
- Rename to `packer-plugin-amazon-ami-management` from `packer-post-processor-amazon-ami-management`.
26+
- Drop pre-built binary support for netbsd/openbsd.
27+
- Add pre-built binary support for arm64.
28+
29+
### Chores
30+
31+
- [#139](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/139): Bump actions/checkout from v2.3.3 to v2.3.4
32+
- [#152](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/152): Bump github.com/zclconf/go-cty from 1.6.1 to 1.7.1
33+
- [#156](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/156): Bump github.com/hashicorp/hcl/v2 from 2.7.0 to 2.8.2
34+
- [#160](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/160): Bump actions/cache from v2.1.2 to v2.1.4
35+
- [#170](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/170): Bump github.com/aws/aws-sdk-go from v1.36.5 to 1.37.15
36+
- [#172](https://github.com/wata727/packer-plugin-amazon-ami-management/pull/172): Small refactoring
37+
138
## v0.9.0 (2020-10-17)
239

340
### Changes

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
var (
1212
// Version is the main version number that is being run at the moment.
13-
Version = "0.9.0"
13+
Version = "1.0.0"
1414

1515
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1616
// (empty string) then it means that it is a final release. Otherwise, this

0 commit comments

Comments
 (0)