Skip to content

Commit

Permalink
feat: support zig master
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Feb 19, 2025
1 parent d444c9a commit fa0e433
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
version: [0.12.0, 0.13.0]
version: [0.12.0, 0.13.0, master]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ _znvim_ is a [neovim remote rpc](https://neovim.io/doc/user/api.html#rpc-connect

## Getting Started

### `0.12.0` / `0.13.0`
### `0.12.0` / `0.13.0` / `master`

1. Add to `build.zig.zon`

Expand Down
2 changes: 1 addition & 1 deletion src/rpc.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const log = std.log.scoped(.znvim);

const Thread = std.Thread;

const TailQueue = std.TailQueue;
const TailQueue = if (builtin.zig_version.minor == 13) std.TailQueue else std.DoublyLinkedList;

const Allocator = std.mem.Allocator;

Expand Down

0 comments on commit fa0e433

Please sign in to comment.