diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a8efe..d1a6648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.1.0](https://github.com/alexeyraspopov/picocolors/releases/tag/v1.1.0) + +- Added bright color variants ([#55](https://github.com/alexeyraspopov/picocolors/pull/55)) + ## [v1.0.1](https://github.com/alexeyraspopov/picocolors/releases/tag/v1.0.1) - Updated color detection mechanism to work properly on Vercel Edge Runtime ([#64](https://github.com/alexeyraspopov/picocolors/pull/64)) diff --git a/LICENSE b/LICENSE index 496098c..46c9b95 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ ISC License -Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov +Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/package.json b/package.json index f832c3b..fd781f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "picocolors", - "version": "1.0.1", + "version": "1.1.0", "main": "./picocolors.js", "types": "./picocolors.d.ts", "browser": { diff --git a/picocolors.browser.js b/picocolors.browser.js index 5eb9fbe..9dcf637 100644 --- a/picocolors.browser.js +++ b/picocolors.browser.js @@ -1,4 +1,4 @@ var x=String; -var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x}}; +var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x,blackBright:x,redBright:x,greenBright:x,yellowBright:x,blueBright:x,magentaBright:x,cyanBright:x,whiteBright:x,bgBlackBright:x,bgRedBright:x,bgGreenBright:x,bgYellowBright:x,bgBlueBright:x,bgMagentaBright:x,bgCyanBright:x,bgWhiteBright:x}}; module.exports=create(); module.exports.createColors = create;