Skip to content

Commit

Permalink
7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Sep 28, 2021
1 parent e4445a7 commit 092f6a7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [7.2.0] - 2021-09-28

### Added

- Add `db.getMany(keys)` ([#381](https://github.com/Level/abstract-leveldown/issues/381)) ([`e4445a7`](https://github.com/Level/abstract-leveldown/commit/e4445a7)) (Vincent Weevers).

## [7.1.0] - 2021-09-21

### Added
Expand Down Expand Up @@ -847,6 +853,8 @@ _It seems the version in `package.json` was never changed to `0.8.0` in the git

First release. :seedling:

[7.2.0]: https://github.com/Level/abstract-leveldown/releases/tag/v7.2.0

[7.1.0]: https://github.com/Level/abstract-leveldown/releases/tag/v7.1.0

[7.0.0]: https://github.com/Level/abstract-leveldown/releases/tag/v7.0.0
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- [`db.open([options, ]callback)`](#dbopenoptions-callback)
- [`db.close(callback)`](#dbclosecallback)
- [`db.get(key[, options], callback)`](#dbgetkey-options-callback)
- [`db.getMany(keys[, options][, callback])`](#dbgetmanykeys-options-callback)
- [`db.put(key, value[, options], callback)`](#dbputkey-value-options-callback)
- [`db.del(key[, options], callback)`](#dbdelkey-options-callback)
- [`db.batch(operations[, options], callback)`](#dbbatchoperations-options-callback)
Expand All @@ -51,6 +52,7 @@
- [`db._serializeKey(key)`](#db_serializekeykey)
- [`db._serializeValue(value)`](#db_serializevaluevalue)
- [`db._get(key, options, callback)`](#db_getkey-options-callback)
- [`db._getMany(keys, options, callback)`](#db_getmanykeys-options-callback)
- [`db._put(key, value, options, callback)`](#db_putkey-value-options-callback)
- [`db._del(key, options, callback)`](#db_delkey-options-callback)
- [`db._batch(operations, options, callback)`](#db_batchoperations-options-callback)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abstract-leveldown",
"version": "7.1.0",
"version": "7.2.0",
"description": "An abstract prototype matching the LevelDOWN API",
"license": "MIT",
"main": "index.js",
Expand Down

0 comments on commit 092f6a7

Please sign in to comment.