Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit b65c52a

Browse files
committed
Mark version 6.0.0
1 parent b36b593 commit b65c52a

2 files changed

Lines changed: 22 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 6.0.0 (2022-06-08)
2+
3+
### Breaking changes
4+
5+
Change the package name from `@codemirror/example-setup` to just `codemirror`.
6+
7+
The package no longer exports `EditorState` (since that is no longer necessary to set up a basic editor).
8+
9+
### New features
10+
11+
The new `minimalSetup` export provides a minimal set of editor extensions.
12+
113
## 0.20.0 (2022-04-20)
214

315
### Breaking changes

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codemirror",
3-
"version": "0.20.0",
4-
"description": "Example configuration for the CodeMirror code editor",
3+
"version": "6.0.0",
4+
"description": "Basic configuration for the CodeMirror code editor",
55
"scripts": {
66
"test": "cm-runtests",
77
"prepare": "cm-buildhelper src/codemirror.ts"
@@ -26,19 +26,19 @@
2626
"sideEffects": false,
2727
"license": "MIT",
2828
"dependencies": {
29-
"@codemirror/autocomplete": "^0.20.0",
30-
"@codemirror/commands": "^0.20.0",
31-
"@codemirror/language": "^0.20.0",
32-
"@codemirror/lint": "^0.20.0",
33-
"@codemirror/search": "^0.20.0",
34-
"@codemirror/state": "^0.20.0",
35-
"@codemirror/view": "^0.20.0"
29+
"@codemirror/autocomplete": "^6.0.0",
30+
"@codemirror/commands": "^6.0.0",
31+
"@codemirror/language": "^6.0.0",
32+
"@codemirror/lint": "^6.0.0",
33+
"@codemirror/search": "^6.0.0",
34+
"@codemirror/state": "^6.0.0",
35+
"@codemirror/view": "^6.0.0"
3636
},
3737
"devDependencies": {
3838
"@codemirror/buildhelper": "^0.1.5"
3939
},
4040
"repository": {
4141
"type": "git",
42-
"url": "https://github.com/codemirror/codemirror.git"
42+
"url": "https://github.com/codemirror/basic-setup.git"
4343
}
4444
}

0 commit comments

Comments
 (0)