Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorah committed Dec 2, 2020
1 parent bf67142 commit 9e049c4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.4.0 (2020-05-12)

### Enhancement

- route53: Gains `restore_to_original_records` option. When enabled, existing record will be restored after authorizing domain names. Useful when other ACME tools or providers using ACME where requires a certain record to remain as long as possible for their renewal process (e.g. Fastly TLS).

## v2.3.1 (2020-05-12)

### Fixes
Expand Down
32 changes: 17 additions & 15 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
acmesmith (2.3.1)
acmesmith (2.4.0)
acme-client (~> 2)
aws-sdk-acm
aws-sdk-route53
Expand All @@ -11,33 +11,34 @@ PATH
GEM
remote: https://rubygems.org/
specs:
acme-client (2.0.6)
acme-client (2.0.7)
faraday (>= 0.17, < 2.0.0)
aws-eventstream (1.1.0)
aws-partitions (1.312.0)
aws-sdk-acm (1.30.0)
aws-sdk-core (~> 3, >= 3.71.0)
aws-partitions (1.402.0)
aws-sdk-acm (1.38.0)
aws-sdk-core (~> 3, >= 3.109.0)
aws-sigv4 (~> 1.1)
aws-sdk-core (3.95.0)
aws-sdk-core (3.109.3)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
aws-sdk-kms (1.31.0)
aws-sdk-core (~> 3, >= 3.71.0)
aws-sdk-kms (1.39.0)
aws-sdk-core (~> 3, >= 3.109.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53 (1.34.0)
aws-sdk-core (~> 3, >= 3.71.0)
aws-sdk-route53 (1.44.0)
aws-sdk-core (~> 3, >= 3.109.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.64.0)
aws-sdk-core (~> 3, >= 3.83.0)
aws-sdk-s3 (1.86.0)
aws-sdk-core (~> 3, >= 3.109.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.1.3)
aws-eventstream (~> 1.0, >= 1.0.2)
aws-sigv4 (1.2.2)
aws-eventstream (~> 1, >= 1.0.2)
diff-lcs (1.3)
faraday (1.0.1)
faraday (1.1.0)
multipart-post (>= 1.2, < 3)
ruby2_keywords
jmespath (1.4.0)
mini_portile2 (2.4.0)
multipart-post (2.1.1)
Expand All @@ -57,6 +58,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.3)
ruby2_keywords (0.0.2)
thor (1.0.1)

PLATFORMS
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.3.1"
VERSION = "2.4.0"
end

0 comments on commit 9e049c4

Please sign in to comment.