From 8e72ac5fe2fb19b3cf1257de821c31cf12166326 Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Tue, 28 Sep 2021 18:30:40 +0200 Subject: [PATCH] 6.0.3 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4823bea9..33d40ec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [6.0.3] - 2021-09-28 + +### Fixed + +- Build universal binary for M1 (Apple silicon) ([#781](https://github.com/Level/leveldown/issues/781)) ([`26ea717`](https://github.com/Level/leveldown/commit/26ea717)) (Vincent Weevers) +- Make `db.clear()` 27x faster by doing it natively ([`aedf49e`](https://github.com/Level/leveldown/commit/aedf49e)) (Vincent Weevers) +- Optimize `db.iterator()` ([`112906b`](https://github.com/Level/leveldown/commit/112906b)) (Vincent Weevers) +- Cleanup hanging iterator also when `next()` errored ([`7356ba4`](https://github.com/Level/leveldown/commit/7356ba4)) (Vincent Weevers) +- Prevent GC of db during `clear()` and other operations ([`9a3f59a`](https://github.com/Level/leveldown/commit/9a3f59a)) (Vincent Weevers). + ## [6.0.2] - 2021-09-12 ### Fixed @@ -1108,6 +1118,8 @@ _Was not published as a tag and `package.json` was never committed with this ver :seedling: First release. Extracted from `levelup` as a stand-alone package ([**@rvagg**](https://github.com/rvagg)) +[6.0.3]: https://github.com/Level/leveldown/releases/tag/v6.0.3 + [6.0.2]: https://github.com/Level/leveldown/releases/tag/v6.0.2 [6.0.1]: https://github.com/Level/leveldown/releases/tag/v6.0.1 diff --git a/package.json b/package.json index 57c60f10..e8d4d7b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "leveldown", - "version": "6.0.2", + "version": "6.0.3", "description": "A low-level Node.js LevelDB binding", "license": "MIT", "main": "leveldown.js",