Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
add `0.12.0` support

update readme
  • Loading branch information
jinzhongjia committed Jun 8, 2024
1 parent aff7287 commit e010ca3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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.13.0]
version: [0.12.0, 0.13.0]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
7 changes: 6 additions & 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.13.0`
### `0.12.0` / `0.13.0`

1. Add to `build.zig.zon`

Expand All @@ -37,3 +37,8 @@ const znvim = b.dependency("znvim", .{
exe.root_module.addImport("znvim", znvim.module("znvim"));
```

## To use this lib

You can find example on `test` fold!

Recommend to learn about what [msgpack](https://github.com/msgpack/msgpack/blob/master/spec.md) is (this lib uses [zig-msgpack](https://github.com/zigcc/zig-msgpack)) and read neovim's API [documentation](https://neovim.io/doc/user/api.html).

0 comments on commit e010ca3

Please sign in to comment.