Skip to content

Commit a63a865

Browse files
chore(main): release 1.0.0 (#18)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8da2b52 commit a63a865

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,42 @@
11
# Changelog
22

3-
## [0.4.1](https://github.com/rezigned/keymap-rs/compare/v0.4.0...v0.4.1) (2024-11-24)
3+
## [1.0.0](https://github.com/rezigned/keymap-rs/compare/v0.4.1...v1.0.0) (2025-06-08)
4+
5+
### ⚠ BREAKING CHANGES
6+
7+
* v1.0.0 release 🎉 ([#17](https://github.com/rezigned/keymap-rs/issues/17))
8+
9+
### Features
410

11+
* v1.0.0 release 🎉 ([#17](https://github.com/rezigned/keymap-rs/issues/17)) ([8da2b52](https://github.com/rezigned/keymap-rs/commit/8da2b525ac0a628583bc8945a3eb74cd8a6c90dd))
12+
* **Declarative key mapping** via config files (`yaml`, `json`, `toml`, etc.)
13+
* **Support for key sequences** like `ctrl-b n`, `g g`, etc.
14+
* **Pattern-matching key groups** (`@upper`, `@any`, etc.)
15+
* **Derive-based config parsing** via `keymap_derive`
16+
* **Backend-agnostic** design with support for `crossterm`, `termion`, `web_sys`, etc.
17+
* `Config<T>`: loads keys exclusively from config files
18+
* `DerivedConfig<T>`: merges config and `#[key("..")]` annotations
19+
20+
## [0.4.1](https://github.com/rezigned/keymap-rs/compare/v0.4.0...v0.4.1) (2024-11-24)
521

622
### Bug Fixes
723

824
* update dependencies ([#12](https://github.com/rezigned/keymap-rs/issues/12)) ([2d0bfda](https://github.com/rezigned/keymap-rs/commit/2d0bfda90e3eff9c2b89079f1096f08de666b600))
925

1026
## [0.4.0](https://github.com/rezigned/keymap-rs/compare/v0.3.0...v0.4.0) (2023-10-11)
1127

12-
1328
### Features
1429

1530
* Convert from Backend::Key to Node ([#10](https://github.com/rezigned/keymap-rs/issues/10)) ([2b46c7f](https://github.com/rezigned/keymap-rs/commit/2b46c7fe0fa4ec0f23555642c3f1464544cf59d4))
1631

1732
## [0.3.0](https://github.com/rezigned/keymap-rs/compare/v0.2.0...v0.3.0) (2023-09-24)
1833

19-
2034
### Features
2135

2236
* Expose 'parse' function ([#7](https://github.com/rezigned/keymap-rs/issues/7)) ([3180c28](https://github.com/rezigned/keymap-rs/commit/3180c28992f30de63a48b1d2647f99637e4d020d))
2337

2438
## [0.2.0](https://github.com/rezigned/keymap-rs/compare/v0.1.0...v0.2.0) (2023-08-01)
2539

26-
2740
### Features
2841

2942
* use char instead of u8 for parser's input to improve error message ([e1c1eb1](https://github.com/rezigned/keymap-rs/commit/e1c1eb1227443e86dbb3a806aee868ea14e9fe45))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "keymap"
33
description = "A library for parsing terminal input events from configuration"
44
authors = ["Marut Khumtong <[email protected]>"]
5-
version = "0.4.1"
5+
version = "1.0.0"
66
homepage = "https://github.com/rezigned/keymap-rs"
77
repository = "https://github.com/rezigned/keymap-rs"
88
edition = "2021"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* ✅ Declarative key mappings via configuration (e.g., YAML, JSON, etc.)
1010
* ⌨️ Supports single keys (e.g. `a`, `enter`, `ctrl-b`, etc.) and key **sequences** (e.g. `ctrl-b n`)
1111
* 🧠 Supports **key groups**:
12-
1312
* `@upper` – uppercase letters
1413
* `@lower` – lowercase letters
1514
* `@alpha` – all alphabetic characters

keymap_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "keymap_derive"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[lib]

keymap_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "keymap_parser"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)