Skip to content

Commit e13bcbf

Browse files
committed
3.0.0 Release 🎉 🎆 🔔
1 parent a075779 commit e13bcbf

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

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

3+
## [v3.0.0](https://github.com/kabirbaidhya/keycode-js/tree/v3.0.0) (2020-06-05)
4+
[Full Changelog](https://github.com/kabirbaidhya/keycode-js/compare/v2.0.3...v3.0.0)
5+
6+
**Closed Issues**
7+
8+
- Missing keycodes [\#35](https://github.com/kabirbaidhya/keycode-js/issues/35) [[feature](https://github.com/kabirbaidhya/keycode-js/labels/feature)]
9+
10+
**Changes**
11+
12+
- Update missing keys and prefix key codes specific to firefox [\#36](https://github.com/kabirbaidhya/keycode-js/pull/36) [[breaking change](https://github.com/kabirbaidhya/keycode-js/labels/breaking%20change)] ([kabirbaidhya](https://github.com/kabirbaidhya))
13+
- Update outdated dev dependencies [\#33](https://github.com/kabirbaidhya/keycode-js/pull/33) [[dependencies](https://github.com/kabirbaidhya/keycode-js/labels/dependencies)] ([kabirbaidhya](https://github.com/kabirbaidhya))
14+
315
## [v2.0.3](https://github.com/kabirbaidhya/keycode-js/tree/v2.0.3) (2019-09-02)
416
[Full Changelog](https://github.com/kabirbaidhya/keycode-js/compare/v2.0.2...v2.0.3)
517

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.3-green?style=flat-square)](https://deno.land/x/keycode/README.md#usagewithdeno)
4+
[![deno](https://img.shields.io/badge/deno-v3.0.0-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.3/dist/keycode.min.js"></script>
48+
<script src="https://unpkg.com/keycode-js@3.0.0/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.3/mod.ts';
68+
import * as KeyCode from 'https://deno.land/x/keycode@v3.0.0/mod.ts';
6969

7070
// Import individual constants
71-
import { KEY_ENTER } from 'https://deno.land/x/keycode@v2.0.3/mod.ts';
71+
import { KEY_ENTER } from 'https://deno.land/x/keycode@v3.0.0/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.3",
3+
"version": "3.0.0",
44
"description": "A JavaScript package with Key Code constants",
55
"license": "MIT",
66
"author": "Kabir Baidhya <kabirbaidhya@gmail.com>",

0 commit comments

Comments
 (0)