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

Commit f111a6f

Browse files
committed
Fix link references in UPGRADING.md for latest remark
1 parent aa3ed3a commit f111a6f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

UPGRADING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Upgrade Guide
22

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`].
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].
44

55
## v3
66

77
Dropped support for node 4. No other breaking changes.
88

99
## v2
1010

11-
This release drops Node.js 0.12, brings `memdown` up to par with latest [`levelup`] (v2) and [`abstract-leveldown`] (v4), simplifies serialization and removes global state.
11+
This release drops Node.js 0.12, brings `memdown` up to par with latest [`levelup`][levelup] (v2) and [`abstract-leveldown`][abstract-leveldown] (v4), simplifies serialization and removes global state.
1212

13-
### Targets latest [`levelup`]
13+
### Targets latest [`levelup`][levelup]
1414

1515
Usage has changed to:
1616

@@ -29,7 +29,7 @@ const db = levelup('mydb', { db: memdown })
2929

3030
### No stringification of keys and values
3131

32-
This means that in addition to Buffers, you can store any JS type without the need for [`encoding-down`]. This release also makes behavior consistent in Node.js and browsers. Please refer to the [README](./README.md) for a detailed explanation.
32+
This means that in addition to Buffers, you can store any JS type without the need for [`encoding-down`][encoding-down]. This release also makes behavior consistent in Node.js and browsers. Please refer to the [README](./README.md) for a detailed explanation.
3333

3434
### No global state or `location` argument
3535

@@ -47,9 +47,9 @@ const db = window.mydb = levelup(memdown())
4747

4848
### No `null` batch operations
4949

50-
Instead of skipping `null` operations, `db.batch([null])` will throw an error courtesy of [`abstract-leveldown`].
50+
Instead of skipping `null` operations, `db.batch([null])` will throw an error courtesy of [`abstract-leveldown`][abstract-leveldown].
5151

52-
[`CHANGELOG`]: CHANGELOG.md
53-
[`abstract-leveldown`]: https://github.com/Level/abstract-leveldown
54-
[`levelup`]: https://github.com/Level/levelup
55-
[`encoding-down`]: https://github.com/Level/encoding-down
52+
[changelog]: CHANGELOG.md
53+
[abstract-leveldown]: https://github.com/Level/abstract-leveldown
54+
[levelup]: https://github.com/Level/levelup
55+
[encoding-down]: https://github.com/Level/encoding-down

0 commit comments

Comments
 (0)