Skip to content

Commit

Permalink
feat: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBastin committed Feb 4, 2022
1 parent cd5a905 commit 1a91864
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Hoppscotch Browser Extension",
"version": "0.22",
"version": "0.23",
"description": "Provides more capabilities for Hoppscotch (https://hoppscotch.io)",
"icons": {
"16": "icons/icon-16x16.png",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hoppscotch-extension",
"version": "0.22.0",
"description": "Provides more features to the Hoppscotch webapp (https://postwoman.io/)",
"version": "0.23.0",
"description": "Provides more features to the Hoppscotch webapp (https://hoppscotch.io/)",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
Expand Down
2 changes: 1 addition & 1 deletion src/contentScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ window.addEventListener('message', ev => {
}
});

const VERSION = { major: 0, minor: 22 };
const VERSION = { major: 0, minor: 23 };

const script = document.createElement('script');
script.textContent = hookContent;
Expand Down
2 changes: 1 addition & 1 deletion src/hookContent.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
window.__POSTWOMAN_EXTENSION_HOOK__ = {

getVersion: () => ({ major: 0, minor: 22 }),
getVersion: () => ({ major: 0, minor: 23 }),

decodeB64ToArrayBuffer: (input, ab) => {

Expand Down

0 comments on commit 1a91864

Please sign in to comment.