Skip to content

Commit 8685c25

Browse files
thejpstereldruin
authored andcommitted
Update version and add CHANGELOG.
1 parent 45ea08e commit 8685c25

File tree

2 files changed

+52
-3
lines changed

2 files changed

+52
-3
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Changelog
2+
3+
## v0.6.0 (29 Aug 2022)
4+
5+
* `Keyboard::new` is now const
6+
* Layout and Scan Code Set are now const-generics, not arguments
7+
* Pause/Break and Print Screen now work correctly
8+
* KeyCode is now non-exhaustive
9+
* KeyState includes 'SingleShot' for keys with no break code
10+
* Add Colemak, Dvorak Programmer and DE layouts
11+
* MSRV increased to Rust 1.61
12+
13+
## v0.5.1 (19 July 2020)
14+
15+
* Add Dvorak, JIS and Azerty layouts
16+
17+
## v0.5.0 (6 Feb 2019)
18+
19+
* Support Ctrl+C generating Unicode U+0003, etc.
20+
* Added tests
21+
22+
## v0.4.1 (5 Feb 2019)
23+
24+
* Support PowerOnTestOk
25+
26+
## v0.4.0 (4 Feb 2019)
27+
28+
* Fixed decoding issues (including Backslash/HashTilde mix-up)
29+
30+
## v0.3.1 (16 Nov 2018)
31+
32+
* Fixed decoding issues
33+
* Added more tests
34+
35+
## v0.3.0 (9 Nov 2018)
36+
37+
* Fixed Scancode Set 1
38+
39+
## v0.2.0 (28 Octo 2018)
40+
41+
* Added Scancode Set 1
42+
43+
## v0.1.1 (22 Aug 2018)
44+
45+
* Metadata fixes
46+
47+
## v0.1.0 (26 Apr 2018)
48+
49+
* First version

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "pc-keyboard"
3-
version = "0.5.1"
4-
authors = ["Jonathan 'theJPster' Pallant <[email protected]>"]
3+
version = "0.6.0"
4+
authors = ["Jonathan 'theJPster' Pallant <[email protected]>", "Rust Embedded Community Contributors"]
55
description = "PS/2 keyboard interface library."
66
keywords = ["arm", "cortex-m", "template", "video", "menu"]
77
categories = ["embedded", "no-std"]
88
license = "MIT OR Apache-2.0"
9-
repository = "https://github.com/thejpster/pc-keyboard"
9+
repository = "https://github.com/rust-embedded-community/pc-keyboard.git"
1010

1111
[dependencies]

0 commit comments

Comments
 (0)