Skip to content

Commit

Permalink
chore(release): 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
luqven committed Mar 2, 2021
1 parent 2428179 commit 1d69c2b
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 7 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.3](https://github.com/imgix/drift/compare/v1.4.2...v1.4.3) (2021-03-02)


### Bug Fixes

* add postcss dependency to fix build error ([#606](https://github.com/imgix/drift/issues/606)) ([a48f0ac](https://github.com/imgix/drift/commit/a48f0ac3e88fac5d4ced75636b70097167d8a9c9))
* 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))

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


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.2",
"version": "1.4.3",
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
"main": [
"dist/Drift.min.js",
Expand Down
38 changes: 37 additions & 1 deletion dist/Drift.js

Large diffs are not rendered by default.

38 changes: 37 additions & 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 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.2",
"version": "1.4.3",
"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.2";
this.VERSION = "1.4.3";
this.triggerEl = triggerEl;

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

0 comments on commit 1d69c2b

Please sign in to comment.