-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add UPGRADING.md * Update changelog for 2.0.1 * Mention why encodings were removed
- Loading branch information
1 parent
87607ae
commit 67ccea7
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Upgrade Guide | ||
|
||
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). | ||
|
||
## v2 | ||
|
||
Encodings were factored out from `levelup` into `encoding-down` and in that process they were removed from this module as well. For more information, please check the corresponding `CHANGELOG.md` for: | ||
|
||
* [`levelup`](https://github.com/Level/levelup/blob/master/CHANGELOG.md) | ||
* [`encoding-down`](https://github.com/Level/encoding-down/blob/master/CHANGELOG.md) | ||
|
||
If your code relies on `options.decoder` for decoding keys and values you need to handle this yourself, e.g. by a transform stream or similar. | ||
|
||
Support for node 0.10, 0.12 and iojs was also dropped. |