From 01b84bc2c25b15ae1fc5c52787538a55484d536e Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 30 Jun 2019 11:55:57 +0100 Subject: [PATCH] Version bump Bumped the second digit instead of the third to indicate a not backwards compatible change: removing the icon named Adobe Lightroom. --- package-lock.json | 2 +- package.json | 2 +- scripts/prepublish.js | 14 -------------- 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5e1951ed..798da9db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "1.9.28", + "version": "1.10.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cd97d5cf..7a18aa6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "1.9.28", + "version": "1.10.0", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://www.simpleicons.org", "keywords": [ diff --git a/scripts/prepublish.js b/scripts/prepublish.js index b8f02ec0..db663d7d 100755 --- a/scripts/prepublish.js +++ b/scripts/prepublish.js @@ -28,19 +28,5 @@ data.icons.forEach(icon => { ); }); -/* Backwards compatibility */ -// https://github.com/simple-icons/simple-icons/pull/1365 -const adobeLightroom = icons["Adobe Lightroom Classic"]; -adobeLightroom.title = "Adobe Lightroom"; -icons["Adobe Lightroom"] = adobeLightroom; -fs.writeFileSync( - `${iconsDir}/adobelightroom.svg`, - adobeLightroom.svg -); -fs.writeFileSync( - `${iconsDir}/adobelightroom.js`, - `module.exports=${JSON.stringify(adobeLightroom)};` -); - // write our generic index.js fs.writeFileSync(indexFile, `module.exports=${JSON.stringify(icons)};`);