diff --git a/README.md b/README.md
index 147034d..d8c1785 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.ts b/base64.d.ts
index f2677f7..eeab94d 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.2";
+declare const version = "3.7.3";
/**
* @deprecated use lowercase `version`.
*/
-declare const VERSION = "3.7.2";
+declare const VERSION = "3.7.3";
/**
* polyfill version of `btoa`
*/
diff --git a/base64.js b/base64.js
index 98bc742..0253235 100644
--- a/base64.js
+++ b/base64.js
@@ -37,7 +37,7 @@
*
* @author Dan Kogai (https://github.com/dankogai)
*/
- var version = '3.7.2';
+ var version = '3.7.3';
/**
* @deprecated use lowercase `version`.
*/
diff --git a/base64.mjs b/base64.mjs
index 735760a..cf66196 100644
--- a/base64.mjs
+++ b/base64.mjs
@@ -9,7 +9,7 @@
*
* @author Dan Kogai (https://github.com/dankogai)
*/
-const version = '3.7.2';
+const version = '3.7.3';
/**
* @deprecated use lowercase `version`.
*/
diff --git a/base64.ts b/base64.ts
index f24c0ec..894a7d5 100644
--- a/base64.ts
+++ b/base64.ts
@@ -9,7 +9,7 @@
*
* @author Dan Kogai (https://github.com/dankogai)
*/
-const version = '3.7.2';
+const version = '3.7.3';
/**
* @deprecated use lowercase `version`.
*/
diff --git a/bower.json b/bower.json
index dc2fb0c..7b2693c 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
{
"name": "js-base64",
- "version": "3.7.2",
+ "version": "3.7.3",
"license": "BSD-3-Clause",
"main": [
"./base64.js"
diff --git a/package.json b/package.json
index dc1b417..790c9a2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "js-base64",
- "version": "3.7.2",
+ "version": "3.7.3",
"description": "Yet another Base64 transcoder in pure-JS",
"main": "base64.js",
"module": "base64.mjs",