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

Commit 94bed7b

Browse files
author
Lars-Magnus Skog
authored
Prepare 3.0.0 (#34)
* add upgrade guide * add changelog * use proper version range for tape
1 parent 4438d63 commit 94bed7b

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
## [3.0.0] - 2018-05-24
6+
7+
### Added
8+
* Add node 10 to Travis (@ralphtheninja)
9+
* Add `standard` (@ralphtheninja)
10+
* Add `CHANGELOG.md` and `UPGRADING.md` (@ralphtheninja)
11+
12+
### Changed
13+
* Upgrade `rocksdb` to `^3.0.0` (@ralphtheninja)
14+
* Upgrade `level-packager` to `^3.0.0` (@ralphtheninja)
15+
16+
### Removed
17+
* Remove node 4 from Travis (@ralphtheninja)
18+
19+
## [2.0.0] - 2018-04-17
20+
21+
### Added
22+
* Add Greenkeeper badge (@ralphtheninja)
23+
* Add node 9 to Travis (@ralphtheninja)
24+
25+
### Changed
26+
* Upgrade `rocksdb` to `^2.0.0` (@ralphtheninja)
27+
* Upgrade `level-packager` to `^2.0.0` (@ralphtheninja)
28+
* Update README (@vweevers)
29+
30+
### Fixed
31+
* Fix oom problems on linux by limiting cores (@ralphtheninja)
32+
33+
### Removed
34+
* Remove node 7 from Travis (@ralphtheninja)
35+
36+
## [1.0.1] - 2017-07-01
37+
38+
### Changed
39+
* Update links in README (@mcollina)
40+
41+
## 1.0.0 - 2017-07-01
42+
43+
**Historical Note** Technically not the first release. Earlier versions were published in 2013.
44+
45+
[Unreleased]: https://github.com/level/level-rocksdb/compare/v3.0.0...HEAD
46+
[3.0.0]: https://github.com/level/level-rocksdb/compare/v2.0.0...v3.0.0
47+
[2.0.0]: https://github.com/level/level-rocksdb/compare/v1.0.1...v2.0.0
48+
[1.0.1]: https://github.com/level/level-rocksdb/compare/v1.0.0...v1.0.1

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Use this package to avoid having to explicitly install `rocksdb` when you want t
2525
* [Contributing](#contributing)
2626
* [License](#license)
2727

28+
**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md).
29+
2830
## Usage
2931

3032
```js

UPGRADING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Upgrade Guide
2+
3+
This document describes breaking changes and how to upgrade. For a complete list of changes including minor and patch releases, please refer to the [changelog](CHANGELOG.md).
4+
5+
## v3
6+
7+
Dropped support for node 4. No other breaking changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"devDependencies": {
3030
"standard": "^11.0.1",
31-
"tape": "*"
31+
"tape": "^4.9.0"
3232
},
3333
"repository": {
3434
"type": "git",

0 commit comments

Comments
 (0)