Skip to content

Commit c782509

Browse files
author
Sherwin H
committed
chore(release): 1.4.0
1 parent 750c4cf commit c782509

File tree

8 files changed

+19
-7
lines changed

8 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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.0](https://github.com/imgix/drift/compare/v1.3.5...v1.4.0) (2019-09-06)
6+
7+
8+
### Bug Fixes
9+
10+
* do not add drift-loading class after first hover ([#317](https://github.com/imgix/drift/issues/317)) ([750c4cf](https://github.com/imgix/drift/commit/750c4cf))
11+
12+
13+
### Features
14+
15+
* **mobile:** add touch delay to allow scroll on mobile ([#315](https://github.com/imgix/drift/issues/315)) ([ceb6101](https://github.com/imgix/drift/commit/ceb6101))
16+
517
### [1.3.5](https://github.com/imgix/drift/compare/v1.3.4...v1.3.5) (2019-08-02)
618

719

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.3.5",
3+
"version": "1.4.0",
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.

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

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

0 commit comments

Comments
 (0)