diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 4aa43c5..85b4861 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.2.1" + ".": "3.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a78ee..f91415e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.3.0](https://github.com/rest-nvim/rest.nvim/compare/v3.2.1...v3.3.0) (2024-09-01) + + +### Features + +* prompt variables (close [#238](https://github.com/rest-nvim/rest.nvim/issues/238)) ([0438864](https://github.com/rest-nvim/rest.nvim/commit/043886421e97dc9c74539c371164849c6c5af902)) + + +### Bug Fixes + +* handle input cancel ([5ce671e](https://github.com/rest-nvim/rest.nvim/commit/5ce671e06b349c55e22a6841a33cf20347413ea5)) + ## [3.2.1](https://github.com/rest-nvim/rest.nvim/compare/v3.2.0...v3.2.1) (2024-08-30) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 915cfeb..7938248 100644 --- a/lua/rest-nvim/api.lua +++ b/lua/rest-nvim/api.lua @@ -18,7 +18,7 @@ local client = function() return require("rest-nvim.client") end ---rest.nvim API version, equals to the current rest.nvim version. Meant to be used by modules later ---@type string ---@see vim.version -api.VERSION = "3.2.1" -- x-release-please-version +api.VERSION = "3.3.0" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number