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

Commit a284cff

Browse files
committed
5.0.1
1 parent f3e86ae commit a284cff

File tree

3 files changed

+43
-35
lines changed

3 files changed

+43
-35
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
_**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
44

5+
## [5.0.1] - 2021-06-07
6+
7+
### Changed
8+
9+
- Remove use of `assert` module ([#721](https://github.com/Level/levelup/issues/721)) ([`f3e86ae`](https://github.com/Level/levelup/commit/f3e86ae)) (Alex Potsides)
10+
511
## [5.0.0] - 2021-04-17
612

713
### Changed
@@ -1114,7 +1120,7 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
11141120

11151121
:seedling: Initial release.
11161122

1117-
## 0.0.0-1 - 2012-08-18
1123+
## [0.0.0-1] - 2012-08-18
11181124

11191125
### Added
11201126

@@ -1129,6 +1135,8 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
11291135

11301136
- Remove unused `inherits` variable ([**@rvagg**](https://github.com/rvagg))
11311137

1138+
[5.0.1]: https://github.com/Level/levelup/compare/v5.0.0...v5.0.1
1139+
11321140
[5.0.0]: https://github.com/Level/levelup/compare/v4.4.0...v5.0.0
11331141

11341142
[4.4.0]: https://github.com/Level/levelup/compare/v4.3.2...v4.4.0
@@ -1316,3 +1324,5 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
13161324
[0.0.1]: https://github.com/Level/levelup/compare/0.0.0...0.0.1
13171325

13181326
[0.0.0]: https://github.com/Level/levelup/compare/0.0.0-1...0.0.0
1327+
1328+
[0.0.0-1]: https://github.com/Level/levelup/releases/tag/0.0.0-1

README.md

Lines changed: 31 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,37 @@
1414

1515
<details><summary>Click to expand</summary>
1616

17-
- [levelup](#levelup)
18-
- [Table of Contents](#table-of-contents)
19-
- [Introduction](#introduction)
20-
- [Supported Platforms](#supported-platforms)
21-
- [Usage](#usage)
22-
- [API](#api)
23-
- [Special Notes](#special-notes)
24-
- [`levelup(db[, options[, callback]])`](#levelupdb-options-callback)
25-
- [`db.supports`](#dbsupports)
26-
- [`db.open(options)`](#dbopenoptions)
27-
- [`db.close([callback])`](#dbclosecallback)
28-
- [`db.put(key, value, options)`](#dbputkey-value-options)
29-
- [`db.get(key, options)`](#dbgetkey-options)
30-
- [`db.del(key, options)`](#dbdelkey-options)
31-
- [`db.batch(array, options)` _(array form)_](#dbbatcharray-options-array-form)
32-
- [`db.batch()` _(chained form)_](#dbbatch-chained-form)
33-
- [`db.isOpen()`](#dbisopen)
34-
- [`db.isClosed()`](#dbisclosed)
35-
- [`db.createReadStream([options])`](#dbcreatereadstreamoptions)
36-
- [`db.createKeyStream([options])`](#dbcreatekeystreamoptions)
37-
- [`db.createValueStream([options])`](#dbcreatevaluestreamoptions)
38-
- [`db.iterator([options])`](#dbiteratoroptions)
39-
- [`db.clear(options)`](#dbclearoptions)
40-
- [What happened to `db.createWriteStream`?](#what-happened-to-dbcreatewritestream)
41-
- [Promise Support](#promise-support)
42-
- [Events](#events)
43-
- [Multi-process Access](#multi-process-access)
44-
- [Contributing](#contributing)
45-
- [Big Thanks](#big-thanks)
46-
- [Donate](#donate)
47-
- [Backers](#backers)
48-
- [Sponsors](#sponsors)
49-
- [License](#license)
17+
- [Introduction](#introduction)
18+
- [Supported Platforms](#supported-platforms)
19+
- [Usage](#usage)
20+
- [API](#api)
21+
- [Special Notes](#special-notes)
22+
- [`levelup(db[, options[, callback]])`](#levelupdb-options-callback)
23+
- [`db.supports`](#dbsupports)
24+
- [`db.open([options][, callback])`](#dbopenoptions-callback)
25+
- [`db.close([callback])`](#dbclosecallback)
26+
- [`db.put(key, value[, options][, callback])`](#dbputkey-value-options-callback)
27+
- [`db.get(key[, options][, callback])`](#dbgetkey-options-callback)
28+
- [`db.del(key[, options][, callback])`](#dbdelkey-options-callback)
29+
- [`db.batch(array[, options][, callback])` _(array form)_](#dbbatcharray-options-callback-array-form)
30+
- [`db.batch()` _(chained form)_](#dbbatch-chained-form)
31+
- [`db.isOpen()`](#dbisopen)
32+
- [`db.isClosed()`](#dbisclosed)
33+
- [`db.createReadStream([options])`](#dbcreatereadstreamoptions)
34+
- [`db.createKeyStream([options])`](#dbcreatekeystreamoptions)
35+
- [`db.createValueStream([options])`](#dbcreatevaluestreamoptions)
36+
- [`db.iterator([options])`](#dbiteratoroptions)
37+
- [`db.clear([options][, callback])`](#dbclearoptions-callback)
38+
- [What happened to `db.createWriteStream`?](#what-happened-to-dbcreatewritestream)
39+
- [Promise Support](#promise-support)
40+
- [Events](#events)
41+
- [Multi-process Access](#multi-process-access)
42+
- [Contributing](#contributing)
43+
- [Big Thanks](#big-thanks)
44+
- [Donate](#donate)
45+
- [Backers](#backers)
46+
- [Sponsors](#sponsors)
47+
- [License](#license)
5048

5149
</details>
5250

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "levelup",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Fast & simple storage - a Node.js-style LevelDB wrapper",
55
"license": "MIT",
66
"main": "lib/levelup.js",

0 commit comments

Comments
 (0)