From cc5ec013e7dae1b2ad60cbbb87c1b9e1fe252df9 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Wed, 16 Oct 2024 08:09:49 +0200 Subject: [PATCH] Mark version 8.13.0 --- acorn/CHANGELOG.md | 6 ++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index c404a235c..1e090161f 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,9 @@ +## 8.13.0 (2024-10-16) + +### New features + +Upgrade to Unicode 16.0. + ## 8.12.1 (2024-07-03) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 355692a30..3396013bb 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.12.1", + "version": "8.13.0", "engines": { "node": ">=0.4.0" }, diff --git a/acorn/src/index.js b/acorn/src/index.js index 4140f12d2..d79d72b45 100644 --- a/acorn/src/index.js +++ b/acorn/src/index.js @@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js" import {Token} from "./tokenize.js" import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js" -export const version = "8.12.1" +export const version = "8.13.0" export { Parser, defaultOptions,