Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reppners committed Jul 27, 2017
1 parent 6d02017 commit 95b1429
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

## 2.1.0 (2017-07-27)

This release adds a minor change to the API surface.

```TS
export function polyfill(override?: Config):boolean;
```

`polyfill()` will inform if the polyfill takes effect by returning `true`.

## 2.0.0 (2017-07-23)

Releasing the rewrite as stable 2.0.0 including a few breaking changes because of renaming.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mobile-drag-drop",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"version": "2.0.0",
"version": "2.1.0",
"main": [
"release/index.js",
"release/default.css"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobile-drag-drop",
"version": "2.0.0",
"version": "2.1.0",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"main": "index.min.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion release/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface Config {
dragImageTranslateOverride?: DragImageTranslateOverrideFn;
defaultActionOverride?: (event: TouchEvent) => void;
}
export declare function polyfill(override?: Config): void;
export declare function polyfill(override?: Config): boolean;
export interface Point {
x: number;
y: number;
Expand Down
3 changes: 2 additions & 1 deletion release/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/index.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/index.min.js.map

Large diffs are not rendered by default.

0 comments on commit 95b1429

Please sign in to comment.