Skip to content

Commit 4f6061c

Browse files
committed
release
1 parent e3c1e77 commit 4f6061c

File tree

4 files changed

+29
-26
lines changed

4 files changed

+29
-26
lines changed

CHANGELOG.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
# Change Log
1+
# Changes
22

3-
All notable changes to this project will be documented in this file.
4-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
3+
## [4.11.0](https://github.com/neovim/node-client/compare/v4.10.0...v4.11.0) (2024-02-07)
54

6-
# [4.8.0](https://github.com/neovim/node-client/compare/v4.7.0...v4.8.0) (2020-01-12)
5+
- `getNvimFromEnv` provides a way to easily find `nvim` on the user's system. (Currently depends on `$PATH` #267)
6+
- Use `$NVIM` instead of deprecated `$NVIM_LISTEN_ADDRESS` #195
7+
- Update dependencies
8+
- Minimum node.js version: 14.x
79

10+
## [4.8.0](https://github.com/neovim/node-client/compare/v4.7.0...v4.8.0) (2020-01-12)
811

9-
### Features
12+
- **attach:** allow custom logger for attach neovim proc ([#138](https://github.com/neovim/node-client/issues/138)) ([d9bc2ef](https://github.com/neovim/node-client/commit/d9bc2efe30cd4c0de3691e953cace04d02e7855f))
1013

11-
* **attach:** allow custom logger for attach neovim proc ([#138](https://github.com/neovim/node-client/issues/138)) ([d9bc2ef](https://github.com/neovim/node-client/commit/d9bc2efe30cd4c0de3691e953cace04d02e7855f))
14+
## [4.7.0](https://github.com/neovim/node-client/compare/v4.6.0...v4.7.0) (2019-12-30)
1215

13-
14-
15-
16-
17-
# [4.7.0](https://github.com/neovim/node-client/compare/v4.6.0...v4.7.0) (2019-12-30)
18-
19-
20-
### Features
21-
22-
* **transport:** bump up msgpack to latest official ([#136](https://github.com/neovim/node-client/issues/136)) ([669e1d9](https://github.com/neovim/node-client/commit/669e1d9591138dc315092c52b819f118ece66749))
16+
- **transport:** bump up msgpack to latest official ([#136](https://github.com/neovim/node-client/issues/136)) ([669e1d9](https://github.com/neovim/node-client/commit/669e1d9591138dc315092c52b819f118ece66749))

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,6 @@ For debugging and configuring logging, you can set the following environment var
179179

180180
See the tests and [`scripts`](https://github.com/neovim/node-client/tree/master/packages/neovim/scripts) for more examples.
181181

182-
## Contributing
183-
184-
After cloning the repo, run `npm install` to install dev dependencies. The main `neovim` library is in `packages/neovim`.
185-
186182
## Maintain
187183

188184
Maintenance tasks:
@@ -196,6 +192,7 @@ Follow these steps to publish a release (where `update_type` is one of `patch`,
196192
```bash
197193
cd packages/neovim
198194
npm version <update_type>
195+
cd -
199196
# Note: this copies the top-level README.md to packages/neovim.
200197
npm run publish:neovim
201198
```
@@ -218,7 +215,12 @@ git commit
218215
git push origin HEAD:gh-pages
219216
```
220217

221-
## Contributors
218+
## Contributing
219+
220+
After cloning the repo, run `npm install` to install dev dependencies. The main `neovim` library is in `packages/neovim`.
221+
222+
### Contributors
223+
222224
* [@billyvg](https://github.com/billyvg) for rewrite
223225
* [@mhartington](https://github.com/mhartington) for TypeScript rewrite
224226
* [@fritzy](https://github.com/fritzy) for transferring over the npm package repo `neovim`!

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/neovim/package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "neovim",
3-
"description": "Neovim client API and neovim remote plugin provider",
4-
"version": "4.10.1",
3+
"description": "Nvim msgpack API client and remote plugin provider",
4+
"version": "4.11.0",
55
"homepage": "https://github.com/neovim/node-client",
66
"authors": [
7+
{
8+
"name": "Justin M. Keyes",
9+
"email": "justinkz@gmail.com"
10+
},
711
{
812
"name": "Billy Vong",
913
"email": "github@mmo.me"
@@ -23,7 +27,7 @@
2327
],
2428
"repository": {
2529
"type": "git",
26-
"url": "https://github.com/neovim/node-client"
30+
"url": "git+https://github.com/neovim/node-client.git"
2731
},
2832
"bugs": {
2933
"url": "https://github.com/neovim/node-client/issues"
@@ -89,7 +93,10 @@
8993
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
9094
"coverageDirectory": "./coverage/",
9195
"collectCoverage": true,
92-
"coverageReporters": ["json", "html"],
96+
"coverageReporters": [
97+
"json",
98+
"html"
99+
],
93100
"testEnvironmentOptions": {
94101
"url": "http://localhost"
95102
}

0 commit comments

Comments
 (0)