diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index fe68b7c..98e60e3 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.8.2" + ".": "3.8.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e4e33b..43f9d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.8.3](https://github.com/rest-nvim/rest.nvim/compare/v3.8.2...v3.8.3) (2024-10-11) + + +### Bug Fixes + +* **telescope:** pass correct file sorter (close [#481](https://github.com/rest-nvim/rest.nvim/issues/481)) ([999c867](https://github.com/rest-nvim/rest.nvim/commit/999c8673641dcb26dced133e3953d4a91b9ed753)) +* **utils:** safely call `:normal gggqG` (fix [#478](https://github.com/rest-nvim/rest.nvim/issues/478)) ([be234c8](https://github.com/rest-nvim/rest.nvim/commit/be234c8236ff9df06f620ed70d5bd730854fb0a4)) + ## [3.8.2](https://github.com/rest-nvim/rest.nvim/compare/v3.8.1...v3.8.2) (2024-09-28) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 1d32b69..1c6a2c8 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.8.2" -- x-release-please-version +api.VERSION = "3.8.3" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number