Skip to content

Commit

Permalink
docs(changelog): update
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Oct 28, 2023
1 parent 7e0364c commit 14b9bea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.1.1] - 2023-10-28
### Fixed
- Remove accidental use of Neovim nightly API (`dap`, `crateGraph`, `explainError`) [[#26](https://github.com/mrcjkb/rustaceanvim/issues/26)].
- Add static type checking for Neovim stable API.

## [3.1.0] - 2023-10-28
### Added
- `:RustLsp explainError` command, uses `rustc --explain` on error diagnostics with
Expand Down
2 changes: 1 addition & 1 deletion lua/rustaceanvim/compat.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ M.uv = vim.uv or vim.loop
--- @field stderr? string

M.system = vim.system
-- wrapper around vim.fn.system to give it a similar API as vim.system
-- wrapper around vim.fn.system to give it a similar API to vim.system
or function(cmd, _, on_exit)
local output = vim.fn.system(cmd)
local ok = vim.v.shell_error
Expand Down

0 comments on commit 14b9bea

Please sign in to comment.