From 53644d0db19d15b035a32a63f479664e86a33b5b Mon Sep 17 00:00:00 2001 From: Dan Kogai Date: Sat, 20 Jan 2024 13:21:41 +0900 Subject: [PATCH] version 3.7.6 --- README.md | 6 +++--- base64.d.mts | 4 ++-- base64.d.ts | 4 ++-- base64.js | 2 +- base64.mjs | 2 +- base64.ts | 2 +- bower.json | 2 +- package.json | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 7e6e1d3..fe5ba6f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Locally… … or Directly from CDN. In which case you don't even need to install. ```html - + ``` This good old way loads `Base64` in the global context (`window`). Though `Base64.noConflict()` is made available, you should consider using ES6 Module to avoid tainting `window`. @@ -48,14 +48,14 @@ or even remotely. ```html ``` ```html ``` diff --git a/base64.d.mts b/base64.d.mts index afd70f4..1e22687 100644 --- a/base64.d.mts +++ b/base64.d.mts @@ -9,11 +9,11 @@ * * @author Dan Kogai (https://github.com/dankogai) */ -declare const version = "3.7.5"; +declare const version = "3.7.6"; /** * @deprecated use lowercase `version`. */ -declare const VERSION = "3.7.5"; +declare const VERSION = "3.7.6"; /** * polyfill version of `btoa` */ diff --git a/base64.d.ts b/base64.d.ts index afd70f4..1e22687 100644 --- a/base64.d.ts +++ b/base64.d.ts @@ -9,11 +9,11 @@ * * @author Dan Kogai (https://github.com/dankogai) */ -declare const version = "3.7.5"; +declare const version = "3.7.6"; /** * @deprecated use lowercase `version`. */ -declare const VERSION = "3.7.5"; +declare const VERSION = "3.7.6"; /** * polyfill version of `btoa` */ diff --git a/base64.js b/base64.js index c44a6c8..db641dc 100644 --- a/base64.js +++ b/base64.js @@ -37,7 +37,7 @@ * * @author Dan Kogai (https://github.com/dankogai) */ - var version = '3.7.5'; + var version = '3.7.6'; /** * @deprecated use lowercase `version`. */ diff --git a/base64.mjs b/base64.mjs index 9c0c5e8..1569e63 100644 --- a/base64.mjs +++ b/base64.mjs @@ -9,7 +9,7 @@ * * @author Dan Kogai (https://github.com/dankogai) */ -const version = '3.7.5'; +const version = '3.7.6'; /** * @deprecated use lowercase `version`. */ diff --git a/base64.ts b/base64.ts index 9c92f6f..acfd107 100644 --- a/base64.ts +++ b/base64.ts @@ -9,7 +9,7 @@ * * @author Dan Kogai (https://github.com/dankogai) */ -const version = '3.7.5'; +const version = '3.7.6'; /** * @deprecated use lowercase `version`. */ diff --git a/bower.json b/bower.json index 9d460e1..8d3f151 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "js-base64", - "version": "3.7.5", + "version": "3.7.6", "license": "BSD-3-Clause", "main": [ "./base64.js" diff --git a/package.json b/package.json index 130d3d0..054b615 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "js-base64", - "version": "3.7.5", + "version": "3.7.6", "description": "Yet another Base64 transcoder in pure-JS", "main": "base64.js", "module": "base64.mjs",