From 97f9e8882de6909ff99990c4dbd24327b82647bc Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Sat, 17 Oct 2020 13:22:01 -0400 Subject: [PATCH] 10.3.0 --- CHANGES.md | 2 +- docs/conf.py | 8 ++++---- docs/maintainers-guide.rst | 6 +++--- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e7ff794ac7..fec763a479 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## Version 10.3.0 (next up) +## Version 10.3.0 Language Improvements: diff --git a/docs/conf.py b/docs/conf.py index 71554e24c0..5b9ef9dc7f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,11 +46,11 @@ # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. -# -# The short X.Y version. -version = '10.2' + # The full version, including alpha/beta/rc tags. -release = '10.2.0' +release = '10.3.0' +# The short X.Y version. +version = ".".join(release.split(".")[:2]) # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/maintainers-guide.rst b/docs/maintainers-guide.rst index 0ac3719e84..a690982162 100644 --- a/docs/maintainers-guide.rst +++ b/docs/maintainers-guide.rst @@ -27,9 +27,9 @@ The goal being that minor version series always get more stable over time and th * Update version numbers using the three-part x.y.z notation everywhere: * The header in CHANGES.md (this is where the site looks for the latest version number) - * ``"version"`` attribute in package.json - * ``"version"`` attribute in package-lock.json (run `npm install`) - * Two places in docs/conf.py (``version`` and ``release``) + * ``version`` attribute in package.json + * ``version`` attribute in package-lock.json (run `npm install`) + * ``release`` variable in docs/conf.py * Commit the version changes and tag the commit with the version number (``9.16.2``, no "v" prefix or anything like that) diff --git a/package-lock.json b/package-lock.json index 4036b03899..b49a1505de 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "highlight.js", - "version": "10.2.1", + "version": "10.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9a10523025..ebf01feb67 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "syntax" ], "homepage": "https://highlightjs.org/", - "version": "10.2.1", + "version": "10.3.0", "author": { "name": "Ivan Sagalaev", "email": "maniac@softwaremaniacs.org"