From 0f83dd2f2937ecdb2658d62d299a96d72959383d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 07:52:23 +0000 Subject: [PATCH] chore(main): release 0.2.0 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ lua/lig/config.lua | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 001eb2c..2be9c43 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.2" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c06d3..c847e44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/0froq/lig.nvim/compare/v0.1.2...v0.2.0) (2026-06-06) + + +### Features + +* add release script ([686deae](https://github.com/0froq/lig.nvim/commit/686deaed8cd0f4eb40d037a4a6184f6b7f147471)) + ## 0.1.2 - 2026-06-06 - Extract theme colors into a reusable source/template layer. diff --git a/lua/lig/config.lua b/lua/lig/config.lua index cd49cd4..6d64c9c 100644 --- a/lua/lig/config.lua +++ b/lua/lig/config.lua @@ -1,7 +1,7 @@ ---@diagnostic disable: undefined-global local M = {} -M.version = "0.1.2" -- x-release-please-version +M.version = "0.2.0" -- x-release-please-version ---@class lig.Config ---@field on_colors fun(colors: ColorScheme)