Skip to content

Commit 494a1a7

Browse files
sherwinskisherwinski
authored andcommitted
chore(release): 1.4.2
1 parent 62c51dc commit 494a1a7

File tree

9 files changed

+16
-8
lines changed

9 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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.
44

5+
### [1.4.2](https://github.com/imgix/drift/compare/v1.4.1...v1.4.2) (2021-02-18)
6+
7+
8+
### Bug Fixes
9+
10+
* correct demo url on readme.md file ([#580](https://github.com/imgix/drift/issues/580)) ([72fa50e](https://github.com/imgix/drift/commit/72fa50ef984322169842cdb1cc2bc22239f4abc7))
11+
* favor directly modifying DOM attributes over using `setAttribute()` ([598](https://github.com/imgix/drift/pull/598))
12+
513
### [1.4.1](https://github.com/imgix/drift/compare/v1.4.0...v1.4.1) (2020-10-09)
614

715
* chore: syncs dependency updates

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drift",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
55
"main": [
66
"dist/Drift.min.js",

dist/Drift.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Drift.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Drift.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/drift-basic.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drift-zoom",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
55
"contributors": [
66
"Frederick Fogerty <[email protected]> (https://github.com/frederickfogerty)",

src/js/Drift.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import ZoomPane from "./ZoomPane";
66

77
export default class Drift {
88
constructor(triggerEl, options = {}) {
9-
this.VERSION = "1.4.1";
9+
this.VERSION = "1.4.2";
1010
this.triggerEl = triggerEl;
1111

1212
this.destroy = this.destroy.bind(this);

0 commit comments

Comments
 (0)