Skip to content
This repository was archived by the owner on Dec 1, 2024. It is now read-only.

Commit 496f0b1

Browse files
committed
6.1.0
1 parent 50dc50b commit 496f0b1

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [6.1.0] - 2021-09-28
4+
5+
### Added
6+
7+
- Add `db.getMany(keys)` ([#787](https://github.com/Level/leveldown/issues/787)) ([`50dc50b`](https://github.com/Level/leveldown/commit/50dc50b)) (Vincent Weevers).
8+
39
## [6.0.3] - 2021-09-28
410

511
### Fixed
@@ -1118,6 +1124,8 @@ _Was not published as a tag and `package.json` was never committed with this ver
11181124

11191125
:seedling: First release. Extracted from `levelup` as a stand-alone package ([**@rvagg**](https://github.com/rvagg))
11201126

1127+
[6.1.0]: https://github.com/Level/leveldown/releases/tag/v6.1.0
1128+
11211129
[6.0.3]: https://github.com/Level/leveldown/releases/tag/v6.0.3
11221130

11231131
[6.0.2]: https://github.com/Level/leveldown/releases/tag/v6.0.2

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
- [`options`](#options-1)
2626
- [`db.get(key[, options], callback)`](#dbgetkey-options-callback)
2727
- [`options`](#options-2)
28+
- [`db.getMany(keys[, options][, callback])`](#dbgetmanykeys-options-callback)
2829
- [`db.del(key[, options], callback)`](#dbdelkey-options-callback)
2930
- [`options`](#options-3)
3031
- [`db.batch(operations[, options], callback)` _(array form)_](#dbbatchoperations-options-callback-array-form)
@@ -230,7 +231,7 @@ The `callback` function will be called with a single `error` if the operation fa
230231

231232
### `db.getMany(keys[, options][, callback])`
232233

233-
Get multiple values from the store by an array of `keys`. The optional `options` object may contain `asBuffer` and `fillCache`, as described in [`get()`](#leveldown_get).
234+
Get multiple values from the store by an array of `keys`. The optional `options` object may contain `asBuffer` and `fillCache`, as described in [`get()`](#dbgetkey-options-callback).
234235

235236
The `callback` function will be called with an `Error` if the operation failed for any reason. If successful the first argument will be `null` and the second argument will be an array of values with the same order as `keys`. If a key was not found, the relevant value will be `undefined`.
236237

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "leveldown",
3-
"version": "6.0.3",
3+
"version": "6.1.0",
44
"description": "A low-level Node.js LevelDB binding",
55
"license": "MIT",
66
"main": "leveldown.js",

0 commit comments

Comments
 (0)