Skip to content

Commit 1d69c2b

Browse files
committed
chore(release): 1.4.3
1 parent 2428179 commit 1d69c2b

File tree

8 files changed

+87
-7
lines changed

8 files changed

+87
-7
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.3](https://github.com/imgix/drift/compare/v1.4.2...v1.4.3) (2021-03-02)
6+
7+
8+
### Bug Fixes
9+
10+
* add postcss dependency to fix build error ([#606](https://github.com/imgix/drift/issues/606)) ([a48f0ac](https://github.com/imgix/drift/commit/a48f0ac3e88fac5d4ced75636b70097167d8a9c9))
11+
* revert "refactor: favor directly modifying DOM attributes over setAttribute" ([#614](https://github.com/imgix/drift/issues/614)) ([2da753d](https://github.com/imgix/drift/commit/2da753d28adee1f6a213437484babe0b8adcbf18))
12+
513
### [1.4.2](https://github.com/imgix/drift/compare/v1.4.1...v1.4.2) (2021-02-18)
614

715

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.2",
3+
"version": "1.4.3",
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: 37 additions & 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: 37 additions & 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.

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.2",
3+
"version": "1.4.3",
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.2";
9+
this.VERSION = "1.4.3";
1010
this.triggerEl = triggerEl;
1111

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

0 commit comments

Comments
 (0)