Skip to content

Commit

Permalink
chore(release): 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherwin H committed Aug 2, 2019
1 parent d1ea511 commit bdd339d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log
# Changelog

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.3.5](https://github.com/imgix/drift/compare/v1.3.4...v1.3.5) (2019-08-02)


### Bug Fixes

* prevent zoom on mobile when handleTouch is set to false ([#293](https://github.com/imgix/drift/issues/293)) ([d1ea511](https://github.com/imgix/drift/commit/d1ea511))
* remove lingering DOM elements on destroy() ([#291](https://github.com/imgix/drift/issues/291)) ([e217752](https://github.com/imgix/drift/commit/e217752))

<a name="1.3.4"></a>
## [1.3.4](https://github.com/imgix/drift/compare/v1.3.3...v1.3.4) (2019-04-06)

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.3.4",
"version": "1.3.5",
"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 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.3.4",
"version": "1.3.5",
"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.3.4";
this.VERSION = "1.3.5";
this.triggerEl = triggerEl;

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

0 comments on commit bdd339d

Please sign in to comment.