Skip to content

Commit

Permalink
🎉 release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot67 committed Jan 28, 2024
1 parent 7c52e25 commit a23a706
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "env-specific-favicon",
"displayName": "Env Specific Favicon",
"version": "1.3.0",
"version": "1.3.1",
"description": "Browser extension to customize favicons based on URL and title regex matching",
"private": true,
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions src/logic/settings-migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,11 @@ const migrationScripts: { fromVersion: string; toVersion: string; migrate: (sett
settings.version = '1.3.0';
},
},
{
fromVersion: '1.3.0',
toVersion: '1.3.1',
migrate: (settings) => {
settings.version = '1.3.1';
},
},
];

0 comments on commit a23a706

Please sign in to comment.