diff --git a/changelog.md b/changelog.md index 6a97a276..b9d12fd7 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,16 @@ This project uses [Semantic Versioning](http://semver.org). +## 3.0.0 + +The CloudFront client now uses the official AWS SDK. If your `s3_website.yml` +file contains the `cloudfront_distribution_config` setting, you might need to modify +the it. The modifications should be rather straightforward, just follow the +[instructions](https://github.com/laurilehmijoki/configure-s3-website/blob/master/changelog.md#200). + +In other words, if you don't use CloudFront, upgrading to 3.0.0 should not +result in any problems. + ## 2.16.0 * Add command `s3_website install` diff --git a/lib/s3_website/version.rb b/lib/s3_website/version.rb index 07b31f72..d6f8ed43 100644 --- a/lib/s3_website/version.rb +++ b/lib/s3_website/version.rb @@ -1,3 +1,3 @@ module S3Website - VERSION = '2.16.0' + VERSION = '3.0.0' end diff --git a/s3_website.gemspec b/s3_website.gemspec index 5b3ed711..6de18434 100644 --- a/s3_website.gemspec +++ b/s3_website.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |s| s.default_executable = %q{s3_website} s.add_dependency 'thor', '~> 0.18' - s.add_dependency 'configure-s3-website', '= 1.7.5' + s.add_dependency 'configure-s3-website', '= 2.0.0' s.add_dependency 'colored', '1.2' s.add_dependency 'dotenv', '~> 1.0'