From 5fd36ad10f9bfaed9b3e06292564ee5202bcc920 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 15:34:15 +0000 Subject: [PATCH 1/2] chore(main): release 0.1.0 --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ src/timeutil.c | 2 +- types/timeutil.d.lua | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index e18ee07..466df71 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cd26a09 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.1.0 (2026-06-10) + + +### Features + +* add library version ([44dfa43](https://github.com/BlueLua/timeutil/commit/44dfa438c4163fe07182fe9ea5c03ba6b1ab534b)) +* add timeutil c module ([cbc6bbd](https://github.com/BlueLua/timeutil/commit/cbc6bbdeb685ba42ce0f9e65c81ba354224d75b4)) diff --git a/src/timeutil.c b/src/timeutil.c index 1b1e2fd..69c204a 100644 --- a/src/timeutil.c +++ b/src/timeutil.c @@ -270,7 +270,7 @@ extern "C" #endif TIMEUTIL_EXPORT int luaopen_timeutil(lua_State *L) { timeutil_newlib(L, timeutil_functions); - lua_pushliteral(L, "timeutil 0.0.0"); /* x-release-please-version */ + lua_pushliteral(L, "timeutil 0.1.0"); /* x-release-please-version */ lua_setfield(L, -2, "_VERSION"); return 1; } diff --git a/types/timeutil.d.lua b/types/timeutil.d.lua index 0ca7a9d..0529792 100644 --- a/types/timeutil.d.lua +++ b/types/timeutil.d.lua @@ -1,6 +1,6 @@ ---@meta timeutil -local version = "timeutil 0.0.0" -- x-release-please-version +local version = "timeutil 0.1.0" -- x-release-please-version --- ---Wall-clock time, monotonic time, and native sleep utilities. From d94e7b07abe493f4b5337a681315209be5210293 Mon Sep 17 00:00:00 2001 From: Haitham <128622475+haithium@users.noreply.github.com> Date: Wed, 10 Jun 2026 18:45:28 +0300 Subject: [PATCH 2/2] chore: update changelog for initial release --- CHANGELOG.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd26a09..7628a88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,4 @@ ## 0.1.0 (2026-06-10) - -### Features - -* add library version ([44dfa43](https://github.com/BlueLua/timeutil/commit/44dfa438c4163fe07182fe9ea5c03ba6b1ab534b)) -* add timeutil c module ([cbc6bbd](https://github.com/BlueLua/timeutil/commit/cbc6bbdeb685ba42ce0f9e65c81ba354224d75b4)) +Initial release