diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 52fb581..cefe73e 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.8.4" + ".": "3.8.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 053dbbd..0325fad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.8.5](https://github.com/rest-nvim/rest.nvim/compare/v3.8.4...v3.8.5) (2024-12-28) + + +### Bug Fixes + +* guess correct filetype from `vnd.api+json` style content-type ([576f8e6](https://github.com/rest-nvim/rest.nvim/commit/576f8e6a40345f51f7bdb12f5df2be0382f7d6ca)), closes [#382](https://github.com/rest-nvim/rest.nvim/issues/382) +* handle localhost domains in cookies ([a52b83b](https://github.com/rest-nvim/rest.nvim/commit/a52b83bd78566e475363660421569c1334f852ba)) + ## [3.8.4](https://github.com/rest-nvim/rest.nvim/compare/v3.8.3...v3.8.4) (2024-11-09) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 28e635a..2ab86fa 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.4" -- x-release-please-version +api.VERSION = "3.8.5" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number