Skip to content

Commit

Permalink
Mark version 5.65.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Jul 20, 2022
1 parent 7a2106a commit dc7e324
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 4 deletions.
10 changes: 10 additions & 0 deletions AUTHORS
Expand Up @@ -124,6 +124,7 @@ Billiam
Billy Moon
Bin Ni
binny
Bjarki Ágúst Guðmundsson
Bjorn Hansen
B Krishna Chaitanya
Blaine G
Expand All @@ -133,6 +134,7 @@ boomyjee
Bo Peng
borawjm
Boris K
Boris Verkhovskiy
Brad Metcalf
Brandon Frohs
Brandon Wamboldt
Expand Down Expand Up @@ -262,6 +264,7 @@ Enam Mijbah Noor
Eric Allam
Eric Bogard
Erik Demaine
Erik Krogh Kristensen
Erik Welander
erosman
eustas
Expand All @@ -270,6 +273,7 @@ Fabien Dubosson
Fabien O'Carroll
Fabio Zendhi Nagao
Faiza Alsaied
Faris Masad
Fauntleroy
fbuchinger
feizhang365
Expand All @@ -294,6 +298,7 @@ Frank Wiegand
fraxx001
Fredrik Borg
FUJI Goro (gfx)
fzipp
Gabriel Gheorghian
Gabriel Horner
Gabriel Nahmias
Expand Down Expand Up @@ -335,6 +340,7 @@ Haoran Yu
Harald Schilly
Hardest
Harshvardhan Gupta
Harutyun Amirjanyan
Hasan Delibaş
Hasan Karahan
Heanes
Expand Down Expand Up @@ -497,6 +503,7 @@ Kim-Anh Tran
Klaus Silveira
Koh Zi Han, Cliff
komakino
kometenstaub
Konrad Zapotoczny
Konstantin Chernenko
Konstantin Lopuhin
Expand Down Expand Up @@ -735,6 +742,7 @@ Pi Delport
Pierre Gerold
Pieter Ouwerkerk
Piyush
Pontus Granström
Pontus Melke
prasanthj
Prasanth J
Expand Down Expand Up @@ -886,6 +894,7 @@ thomasmaclean
Thomas Schmid
Tim Alby
Tim Baumann
Tim Down
Tim Gates
Tim Nguyen
Timothy Farrell
Expand Down Expand Up @@ -945,6 +954,7 @@ Wojtek Ptak
wonderboyjon
Wu Cheng-Han
Xavier Mendez
Yakov Manshin
Yang Guo
Yash Singh
Yash-Singh1
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## 5.65.7 (2022-07-20)

### Bug fixes

Fix several references to the global `document`/`window`, improving support for creating an editor in another frame.

[vim bindings](https://codemirror.net/5/demo/vim.html): Use [upstream](https://github.com/replit/codemirror-vim/) code instead of keeping our own copy.

[tern addon](https://codemirror.net/5/demo/tern.html): Properly HTML escape variable names in rename dialog.

## 5.65.6 (2022-06-20)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Expand Up @@ -70,7 +70,7 @@
<section class=first id=overview>
<h2 style="position: relative">
User manual and reference guide
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.6</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.7</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
12 changes: 12 additions & 0 deletions doc/releases.html
Expand Up @@ -28,8 +28,20 @@ <h2>Release notes and version history</h2>

<section id=v5 class=first>

<h2>Version 6.x</h2>

<p>See <a href="https://codemirror.net/docs/changelog/">the new website</a>.</p>

<h2>Version 5.x</h2>

<p class="rel">20-07-2022: <a href="https://codemirror.net/5/codemirror-5.65.7.zip">Version 5.65.7</a>:</p>

<ul class="rel-note">
<li>Fix several references to the global <code>document</code>/<code>window</code>, improving support for creating an editor in another frame.</li>
<li><a href="https://codemirror.net/5/demo/vim.html">vim bindings</a>: Use <a href="https://github.com/replit/codemirror-vim/">upstream</a> code instead of keeping our own copy.</li>
<li><a href="https://codemirror.net/5/demo/tern.html">tern addon</a>: Properly HTML escape variable names in rename dialog.</li>
</ul>

<p class="rel">20-06-2022: <a href="https://codemirror.net/5/codemirror-5.65.6.zip">Version 5.65.6</a>:</p>

<ul class="rel-note">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -92,7 +92,7 @@ <h2>This is CodeMirror</h2>
</script>

<div class=actions>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.6</a>.<br>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.7</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror5" title="GitHub repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.65.6",
"version": "5.65.7",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.65.6"
CodeMirror.version = "5.65.7"

0 comments on commit dc7e324

Please sign in to comment.