From 472913298be47e56d9b9a65fa3156c08cbc9a772 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Fri, 30 Aug 2024 03:22:09 +0000 Subject: [PATCH] chore(main): release 3.2.1 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ lua/rest-nvim/api.lua | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 0b922d0..4aa43c5 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.2.0" + ".": "3.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d815f..20a78ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.2.1](https://github.com/rest-nvim/rest.nvim/compare/v3.2.0...v3.2.1) (2024-08-30) + + +### Bug Fixes + +* **statistics:** allow all curl statistics, ordering, highlight ([344fdff](https://github.com/rest-nvim/rest.nvim/commit/344fdffb11493edbcf6f9932fd98d8ca4df79928)) +* **statistics:** change statistics option to list ([6fc08c9](https://github.com/rest-nvim/rest.nvim/commit/6fc08c9020028ad6a53af48833a428a3d9109489)) +* **statistics:** fix skip curl.statistics key ([1eb44cd](https://github.com/rest-nvim/rest.nvim/commit/1eb44cd33b8e51424f001f4050aeec86a1b2ccd2)) + ## [3.2.0](https://github.com/rest-nvim/rest.nvim/compare/v3.1.0...v3.2.0) (2024-08-26) diff --git a/lua/rest-nvim/api.lua b/lua/rest-nvim/api.lua index d288920..915cfeb 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.1.0" -- x-release-please-version +api.VERSION = "3.2.1" -- x-release-please-version ---rest.nvim namespace used for buffer highlights ---@type number