Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0"
".": "0.3.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.0](https://github.com/BlueLua/evdev/compare/v0.2.0...v0.3.0) (2026-06-19)


### Features

* **ecodes:** update event codes to latest Linux kernel ([#7](https://github.com/BlueLua/evdev/issues/7)) ([a3f7f86](https://github.com/BlueLua/evdev/commit/a3f7f860bfc0ce57d6c96921ad1e43dcc87e36b5))

## [0.2.0](https://github.com/BlueLua/evdev/compare/v0.1.0...v0.2.0) (2026-06-04)


Expand Down
2 changes: 1 addition & 1 deletion src/evdev/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
return setmetatable({
_VERSION = "evdev 0.2.0", -- x-release-please-version
_VERSION = "evdev 0.3.0", -- x-release-please-version
}, {
__index = function(t, k)
local modname = "evdev." .. tostring(k)
Expand Down
2 changes: 1 addition & 1 deletion types/evdev.d.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---@alias evdev.path string Path to an evdev device node or related input path.
---@alias evdev.eventValue integer Numeric value attached to an input event.

local version = "evdev 0.2.0" -- x-release-please-version
local version = "evdev 0.3.0" -- x-release-please-version

---
---Lua bindings for Linux evdev devices and /dev/uinput virtual devices.
Expand Down