diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index f1507a00..f5258250 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.3.2" + ".": "3.3.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 29c692c5..5a070e41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.3.3](https://github.com/rest-nvim/rest.nvim/compare/v3.3.2...v3.3.3) (2024-09-02) + + +### Bug Fixes + +* **cookie:** `clean()` should keep cookies (fix [#434](https://github.com/rest-nvim/rest.nvim/issues/434)) ([e2f13a2](https://github.com/rest-nvim/rest.nvim/commit/e2f13a2705b9e5d698b0d868678a4eecd9e9305e)) + ## [3.3.2](https://github.com/rest-nvim/rest.nvim/compare/v3.3.1...v3.3.2) (2024-09-01) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index c2ca3305..3527ce6b 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.3.2" -- x-release-please-version +api.VERSION = "3.3.3" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number