diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 9037ce1..19f9217 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.10.1" + ".": "3.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a667fb6..d00e52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.11.0](https://github.com/rest-nvim/rest.nvim/compare/v3.10.1...v3.11.0) (2025-02-13) + + +### Features + +* add ability to pass certs ([#519](https://github.com/rest-nvim/rest.nvim/issues/519)) ([fc34f46](https://github.com/rest-nvim/rest.nvim/commit/fc34f46906c454aab5e404a8c6d150a84175293c)) + ## [3.10.1](https://github.com/rest-nvim/rest.nvim/compare/v3.10.0...v3.10.1) (2025-02-09) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 90bd62f..247462d 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.10.1" -- x-release-please-version +api.VERSION = "3.11.0" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number