diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 4344650c..fc62d3d3 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.9.1" + ".": "3.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ce971b2..933663bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.10.0](https://github.com/rest-nvim/rest.nvim/compare/v3.9.1...v3.10.0) (2025-02-09) + + +### Features + +* add `rest.Opts.Env.find` option. (fixes [#518](https://github.com/rest-nvim/rest.nvim/issues/518)) ([5c1fc0f](https://github.com/rest-nvim/rest.nvim/commit/5c1fc0f87e622a5a17258bac8dd05fcac31745c2)) + + +### Bug Fixes + +* correct uri scheme parsing ([62606c3](https://github.com/rest-nvim/rest.nvim/commit/62606c3599bd304227457d6e20580965939b191e)) + ## [3.9.1](https://github.com/rest-nvim/rest.nvim/compare/v3.9.0...v3.9.1) (2024-12-28) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index b6bd967e..462d6d45 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.9.1" -- x-release-please-version +api.VERSION = "3.10.0" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number