Skip to content

Commit 3b1a466

Browse files
chore: bump version to 1.7.1
- Add project selection dialog (choose from existing or enter new) - Update VERSION.txt, changelog, and Lua engine version string
1 parent ebe6ed4 commit 3b1a466

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.1] (2026-06-04)
9+
10+
### Added
11+
- **Project Selection Dialog**: When entering a project name, users can now choose from a list of existing projects or type a new one, preventing typos that would create duplicate project entries.
12+
813
## [1.7.0] (2026-06-03)
914

1015
### Added

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.7.1

internal/lua/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func (e *Engine) SetupKairoAPI(L *lua.LState) {
6161
L.SetField(kairo, "notify", L.NewFunction(e.luaNotify))
6262

6363
// Meta
64-
L.SetField(kairo, "version", lua.LString("1.7.0"))
64+
L.SetField(kairo, "version", lua.LString("1.7.1"))
6565

6666
// Set as global
6767
L.SetGlobal("kairo", kairo)

0 commit comments

Comments
 (0)