From 313004ecac417999e5e4f02c4455c0fe209677d6 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Sun, 1 Sep 2024 14:16:29 +0000 Subject: [PATCH] chore(main): release 3.3.1 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ lua/rest-nvim/api.lua | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 85b4861..466b719 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.3.0" + ".": "3.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f91415e..b8a255a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.3.1](https://github.com/rest-nvim/rest.nvim/compare/v3.3.0...v3.3.1) (2024-09-01) + + +### Bug Fixes + +* **ui:** use `rest_nvim_result` filetype for all panes (fix [#424](https://github.com/rest-nvim/rest.nvim/issues/424)) ([3327656](https://github.com/rest-nvim/rest.nvim/commit/33276565fd6320411734888484adf8d54ac315ca)) + ## [3.3.0](https://github.com/rest-nvim/rest.nvim/compare/v3.2.1...v3.3.0) (2024-09-01) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index 7938248..b6d0733 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.0" -- x-release-please-version +api.VERSION = "3.3.1" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number