From f2eb2d2f970d05d220d6cc2c511f4ae2bb0b201b Mon Sep 17 00:00:00 2001 From: Alejandro Date: Sun, 8 Sep 2024 07:40:19 +0000 Subject: [PATCH] chore(main): release 3.6.0 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ lua/rest-nvim/api.lua | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index a5b625e..23efc1e 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.5.1" + ".": "3.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2875cb5..4340d3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.6.0](https://github.com/rest-nvim/rest.nvim/compare/v3.5.1...v3.6.0) (2024-09-08) + + +### Features + +* save response to file (close [#359](https://github.com/rest-nvim/rest.nvim/issues/359)) ([f9a5ebb](https://github.com/rest-nvim/rest.nvim/commit/f9a5ebbad35481343ea8b3a578bc30c00beb45e4)) + + +### Bug Fixes + +* force delete scratch buffer ([34f3fe9](https://github.com/rest-nvim/rest.nvim/commit/34f3fe9660b912429279ba87ab49aa3d0c37e0c9)) + ## [3.5.1](https://github.com/rest-nvim/rest.nvim/compare/v3.5.0...v3.5.1) (2024-09-05) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 2b61002..ac556ea 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.5.1" -- x-release-please-version +api.VERSION = "3.6.0" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number