Skip to content

Commit e15d02e

Browse files
committed
2.0.3 Release 🎉 🎆 🔔
1 parent c6b9d4c commit e15d02e

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [v2.0.3](https://github.com/kabirbaidhya/keycode-js/tree/v2.0.3) (2019-09-02)
4+
[Full Changelog](https://github.com/kabirbaidhya/keycode-js/compare/v2.0.2...v2.0.3)
5+
6+
**Changes**
7+
8+
- Generate ES5 compatible build [\#32](https://github.com/kabirbaidhya/keycode-js/pull/32) ([inspirado](https://github.com/inspirado))
9+
310
## [v2.0.2](https://github.com/kabirbaidhya/keycode-js/tree/v2.0.2) (2019-08-27)
411
[Full Changelog](https://github.com/kabirbaidhya/keycode-js/compare/v2.0.1...v2.0.2)
512

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# KeyCode Constants
22

33
[![npm version](https://img.shields.io/npm/v/keycode-js.svg?style=flat-square)](https://www.npmjs.com/package/keycode-js)
4-
[![deno](https://img.shields.io/badge/deno-v2.0.2-green?style=flat-square)](https://deno.land/x/keycode/README.md#usagewithdeno)
4+
[![deno](https://img.shields.io/badge/deno-v2.0.3-green?style=flat-square)](https://deno.land/x/keycode/README.md#usagewithdeno)
55
[![Build Status](https://img.shields.io/travis/kabirbaidhya/keycode-js.svg?style=flat-square)](https://travis-ci.org/kabirbaidhya/keycode-js)
66
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/kabirbaidhya/keycode-js.svg?style=flat-square&logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/kabirbaidhya/keycode-js/context:javascript)
77
[![npm downloads per week](https://img.shields.io/npm/dw/keycode-js.svg?style=flat-square)](https://www.npmjs.com/package/keycode-js)
@@ -45,7 +45,7 @@ import { KEY_RETURN } from 'keycode-js';
4545
Or, using `<script>` tag:
4646

4747
```html
48-
<script src="https://unpkg.com/keycode-js@2.0.2/dist/keycode.min.js"></script>
48+
<script src="https://unpkg.com/keycode-js@2.0.3/dist/keycode.min.js"></script>
4949
```
5050

5151
Finally:
@@ -65,10 +65,10 @@ window.addEventListener('keyup', function(e) {
6565

6666
```ts
6767
// Import all constants
68-
import * as KeyCode from 'https://deno.land/x/keycode@v2.0.2/mod.ts';
68+
import * as KeyCode from 'https://deno.land/x/keycode@v2.0.3/mod.ts';
6969

7070
// Import individual constants
71-
import { KEY_ENTER } from 'https://deno.land/x/keycode@v2.0.2/mod.ts';
71+
import { KEY_ENTER } from 'https://deno.land/x/keycode@v2.0.3/mod.ts';
7272

7373
console.assert(KeyCode.KEY_ENTER === KEY_ENTER);
7474
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "keycode-js",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A JavaScript package with Key Code constants",
55
"license": "MIT",
66
"author": "Kabir Baidhya <kabirbaidhya@gmail.com>",

0 commit comments

Comments
 (0)