Skip to content

Commit

Permalink
chore(release): 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sherwinski authored and sherwinski committed Feb 18, 2021
1 parent 62c51dc commit 494a1a7
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.4.2](https://github.com/imgix/drift/compare/v1.4.1...v1.4.2) (2021-02-18)


### Bug Fixes

* correct demo url on readme.md file ([#580](https://github.com/imgix/drift/issues/580)) ([72fa50e](https://github.com/imgix/drift/commit/72fa50ef984322169842cdb1cc2bc22239f4abc7))
* favor directly modifying DOM attributes over using `setAttribute()` ([598](https://github.com/imgix/drift/pull/598))

### [1.4.1](https://github.com/imgix/drift/compare/v1.4.0...v1.4.1) (2020-10-09)

* chore: syncs dependency updates
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drift",
"version": "1.4.1",
"version": "1.4.2",
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
"main": [
"dist/Drift.min.js",
Expand Down
2 changes: 1 addition & 1 deletion dist/Drift.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/Drift.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/Drift.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/drift-basic.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drift-zoom",
"version": "1.4.1",
"version": "1.4.2",
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
"contributors": [
"Frederick Fogerty <[email protected]> (https://github.com/frederickfogerty)",
Expand Down
2 changes: 1 addition & 1 deletion src/js/Drift.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ZoomPane from "./ZoomPane";

export default class Drift {
constructor(triggerEl, options = {}) {
this.VERSION = "1.4.1";
this.VERSION = "1.4.2";
this.triggerEl = triggerEl;

this.destroy = this.destroy.bind(this);
Expand Down

0 comments on commit 494a1a7

Please sign in to comment.