Skip to content

Commit

Permalink
chore(release): 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdeansanchez committed Oct 14, 2020
1 parent 61e62d6 commit ddc186b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.1.0](https://github.com/imgix/imgix-rb/compare/4.0.2...4.1.0) - October 13, 2020

### Release Notes
Version 4.1.0 has been released! The goal of this release is to offer flexibility to those using imgix-rb's purger capabilities through imgix-rails.

Prior to this release, this gem offered purging capability through `imgix '~> 3.0'`. However, that purging capability has been deprecated in favor of the new-style purging API––available now in [imgix-rb v4.0.0](https://github.com/imgix/imgix-rb/releases/tag/4.0.0).

To upgrade to the new purging API used in `imgix '~> 4.0'`:

- navigate to the [API Keys](https://dashboard.imgix.com/api-keys) portion of your dashboard
- generate a new API Key
- use this new key in your imgix client: `Imgix::Client.new(domain: '...', api_key: NEW_API_KEY)`

### Changes
- build: use optimistic constraint for imgix >= 3.0 ([#104](https://github.com/imgix/imgix-rails/pull/104))

## [4.0.2](https://github.com/imgix/imgix-rb/compare/4.0.1...4.0.2) - July 31, 2020
- fix: replace `opts[:host`] with `opts[:domain]` to resolve deprecation warnings ([#96](https://github.com/imgix/imgix-rails/pull/96))

Expand Down
2 changes: 1 addition & 1 deletion lib/imgix/rails/version.rb
@@ -1,5 +1,5 @@
module Imgix
module Rails
VERSION = '4.0.2'
VERSION = '4.1.0'
end
end

0 comments on commit ddc186b

Please sign in to comment.