Skip to content

Commit

Permalink
Releng v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorah committed Oct 4, 2023
1 parent f729b7b commit 6a9287d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 23 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v2.6.0 (2023-10-05)

### Enhancement

- order: Gains `--key-type`, `--rsa-key-size`, `--elliptic-curve` options to customize private key generation, and generating EC keys. [#58](https://github.com/sorah/acmesmith/pull/58)
- autorenew: Respect the existing key configuration when regenerating a fresh key pair for renewal. [#58](https://github.com/sorah/acmesmith/pull/58)

## v2.5.0 (2020-10-09)

### Enhancement
Expand Down
47 changes: 25 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
acmesmith (2.5.0)
acmesmith (2.6.0)
acme-client (>= 2.0.7, < 3)
aws-sdk-acm
aws-sdk-route53
Expand All @@ -11,38 +11,41 @@ PATH
GEM
remote: https://rubygems.org/
specs:
acme-client (2.0.11)
acme-client (2.0.14)
faraday (>= 1.0, < 3.0.0)
faraday-retry (~> 1.0)
faraday-retry (>= 1.0, < 3.0.0)
aws-eventstream (1.2.0)
aws-partitions (1.644.0)
aws-sdk-acm (1.52.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-partitions (1.832.0)
aws-sdk-acm (1.62.0)
aws-sdk-core (~> 3, >= 3.184.0)
aws-sigv4 (~> 1.1)
aws-sdk-core (3.159.0)
aws-sdk-core (3.185.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.58.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kms (1.72.0)
aws-sdk-core (~> 3, >= 3.184.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53 (1.65.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-route53 (1.79.0)
aws-sdk-core (~> 3, >= 3.184.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.114.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-s3 (1.136.0)
aws-sdk-core (~> 3, >= 3.181.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sigv4 (1.5.2)
aws-sigv4 (~> 1.6)
aws-sigv4 (1.6.0)
aws-eventstream (~> 1, >= 1.0.2)
base64 (0.1.1)
diff-lcs (1.4.4)
faraday (2.6.0)
faraday (2.7.11)
base64
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.1)
faraday-retry (1.0.3)
jmespath (1.6.1)
faraday-net_http (3.0.2)
faraday-retry (2.2.0)
faraday (~> 2.0)
jmespath (1.6.2)
mini_portile2 (2.8.1)
nokogiri (1.14.3)
mini_portile2 (~> 2.8.0)
Expand All @@ -63,7 +66,7 @@ GEM
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
ruby2_keywords (0.0.5)
thor (1.2.1)
thor (1.2.2)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/acmesmith/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Acmesmith
VERSION = "2.5.0"
VERSION = "2.6.0"
end

0 comments on commit 6a9287d

Please sign in to comment.