From 1855eacfd6afd41013a83d38168dde6270d4fd34 Mon Sep 17 00:00:00 2001 From: "Marek S. Lukasiewicz" Date: Tue, 30 Jul 2024 20:20:27 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 3 +++ grep.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8ae23c..b4d366e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [2.1.0] - 2024-07-30 + ### Added - Support for alternation and repetition operators (Extended Regular Expression) @@ -35,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release with core functionality +[2.1.0]: https://github.com/Maarrk/silverbullet-grep/compare/v2.0.0...v2.1.0 [2.0.0]: https://github.com/Maarrk/silverbullet-grep/compare/v1.1.0...v2.0.0 [1.1.0]: https://github.com/Maarrk/silverbullet-grep/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/Maarrk/silverbullet-grep/releases/tag/v1.0.0 diff --git a/grep.ts b/grep.ts index f014384..73e71e2 100644 --- a/grep.ts +++ b/grep.ts @@ -1,7 +1,7 @@ import { editor, shell } from "$sb/syscalls.ts"; import { readSetting } from "$sb/lib/settings_page.ts"; -const VERSION = "2.0.0"; +const VERSION = "2.1.0"; const resultPage = "GREP RESULT";