Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor!: drop neovim 0.9 compatibility layer #459

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: DeterminateSystems/nix-installer-action@v10
- uses: cachix/cachix-action@v12
with:
name: mrcjkb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nix-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: DeterminateSystems/nix-installer-action@v10
- uses: cachix/cachix-action@v12
with:
name: mrcjkb
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: DeterminateSystems/nix-installer-action@v10
- uses: cachix/cachix-action@v12
with:
name: mrcjkb
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
with:
extra_nix_config: |
experimental-features = nix-command flakes
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
uses: DeterminateSystems/nix-installer-action@v10
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v20
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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).

## [5.0.0] - 2024-07-26

### BREAKING CHANGES

- Require Neovim `>= 0.10.0`.
- Rename types in LuaCATS annotations and vimdoc.

## [4.26.1] - 2024-07-10

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ that are specific to rust-analyzer.

### Required

- `neovim >= 0.9`
- `neovim >= 0.10`
- [`rust-analyzer`](https://rust-analyzer.github.io/)

### Optional
Expand Down Expand Up @@ -94,7 +94,7 @@ Example using [`lazy.nvim`](https://github.com/folke/lazy.nvim):
```lua
{
'mrcjkb/rustaceanvim',
version = '^4', -- Recommended
version = '^5', -- Recommended
lazy = false, -- This plugin is already lazy
}
```
Expand Down
229 changes: 141 additions & 88 deletions doc/rustaceanvim.txt

Large diffs are not rendered by default.

Loading
Loading