Skip to content

Commit

Permalink
Bump version to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drudru committed Nov 2, 2021
1 parent 8eec201 commit aa1627c
Show file tree
Hide file tree
Showing 7 changed files with 912 additions and 4 deletions.
Empty file added .notags
Empty file.
2 changes: 2 additions & 0 deletions Readme.md
Expand Up @@ -73,6 +73,7 @@ More examples are in the 'examples' directory in the repo.
$ npm install ansi_up

## Versions
* Version 5.1 - Add italic and underline styles (@DaoDaoNoCode)
* Version 5.0 - Security fix for OSC URLs
* Version 4.0 - Re-architect code to support [terminal URL codes](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda).
* Version 3.0 - now treats ANSI bold sequences as CSS font-weight:bold
Expand Down Expand Up @@ -182,6 +183,7 @@ This code was developed by Dru Nelson (<https://github.com/drudru>).

Thanks goes to the following contributors for their patches:

- Juntao Wang (<https://github.com/DaoDaoNoCode>)
- AIZAWA Hina (<https://github.com/fetus-hina>)
- James R. White (<https://github.com/jamesrwhite>)
- Aaron Stone (<https://github.com/sodabrew>)
Expand Down
2 changes: 1 addition & 1 deletion ansi_up.js
Expand Up @@ -34,7 +34,7 @@ var PacketKind;
})(PacketKind || (PacketKind = {}));
var AnsiUp = (function () {
function AnsiUp() {
this.VERSION = "5.0.1";
this.VERSION = "5.1.0";
this.setup_palettes();
this._use_classes = false;
this.bold = false;
Expand Down
2 changes: 1 addition & 1 deletion ansi_up.ts
Expand Up @@ -52,7 +52,7 @@ interface TextPacket {

class AnsiUp
{
VERSION = "5.0.1";
VERSION = "5.1.0";

//
// *** SEE README ON GITHUB FOR PUBLIC API ***
Expand Down
2 changes: 1 addition & 1 deletion dist/ansi_up.js.include
Expand Up @@ -15,7 +15,7 @@ var PacketKind;
})(PacketKind || (PacketKind = {}));
var AnsiUp = (function () {
function AnsiUp() {
this.VERSION = "5.0.1";
this.VERSION = "5.1.0";
this.setup_palettes();
this._use_classes = false;
this.bold = false;
Expand Down

0 comments on commit aa1627c

Please sign in to comment.