From 54758ad43343a3d3f86a3d53bc66607dab1fe3fd Mon Sep 17 00:00:00 2001 From: Kai Volland Date: Wed, 6 Nov 2024 15:03:19 +0100 Subject: [PATCH 1/3] fix: readd binaries to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fa5f1fa..e465d14 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules build +binaries dist output-bulk output.* From f84d295453b3eb4bb89fc59df1236eddf37b9cc8 Mon Sep 17 00:00:00 2001 From: Kai Volland Date: Thu, 7 Nov 2024 11:34:04 +0100 Subject: [PATCH 2/3] fix: update the binary names and assets --- .releaserc | 6 +++--- package-binaries.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.releaserc b/.releaserc index 16b72c3..4b85af1 100644 --- a/.releaserc +++ b/.releaserc @@ -37,9 +37,9 @@ "@semantic-release/github", { "assets": [ - {"path": "./binaries/geostyler-cli-linux.zip", "label": "GeoStyler CLI Linux executable"}, - {"path": "./binaries/geostyler-cli-macos.zip", "label": "GeoStyler CLI MacOS executable"}, - {"path": "./binaries/geostyler-cli-win.exe.zip", "label": "GeoStyler CLI Windows executable"} + {"path": "./binaries/geostyler-linux.zip", "label": "GeoStyler CLI Linux executable"}, + {"path": "./binaries/geostyler-macos.zip", "label": "GeoStyler CLI MacOS executable"}, + {"path": "./binaries/geostyler-win.exe.zip", "label": "GeoStyler CLI Windows executable"} ] } ] diff --git a/package-binaries.js b/package-binaries.js index 5b40f19..5e94bcd 100644 --- a/package-binaries.js +++ b/package-binaries.js @@ -6,7 +6,7 @@ const AdmZip = require('adm-zip'); // Define the folder path and the list of file names const folderPath = './binaries/'; -const fileNames = ['geostyler-cli-win.exe', 'geostyler-cli-linux', 'geostyler-cli-macos']; +const fileNames = ['geostyler-win.exe', 'geostyler-linux', 'geostyler-macos']; function renameFile(oldPath, newPath) { return new Promise((resolve, reject) => { From e705de2592d45c4fd9a13324d024dde3869f5f26 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 7 Nov 2024 11:56:04 +0000 Subject: [PATCH 3/3] chore(release): 4.1.2 [skip ci] ## [4.1.2](https://github.com/geostyler/geostyler-cli/compare/v4.1.1...v4.1.2) (2024-11-07) ### Bug Fixes * readd binaries to gitignore ([54758ad](https://github.com/geostyler/geostyler-cli/commit/54758ad43343a3d3f86a3d53bc66607dab1fe3fd)) * update the binary names and assets ([f84d295](https://github.com/geostyler/geostyler-cli/commit/f84d295453b3eb4bb89fc59df1236eddf37b9cc8)) --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3adc83..4c00ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [4.1.2](https://github.com/geostyler/geostyler-cli/compare/v4.1.1...v4.1.2) (2024-11-07) + + +### Bug Fixes + +* readd binaries to gitignore ([54758ad](https://github.com/geostyler/geostyler-cli/commit/54758ad43343a3d3f86a3d53bc66607dab1fe3fd)) +* update the binary names and assets ([f84d295](https://github.com/geostyler/geostyler-cli/commit/f84d295453b3eb4bb89fc59df1236eddf37b9cc8)) + ## [4.1.1](https://github.com/geostyler/geostyler-cli/compare/v4.1.0...v4.1.1) (2024-11-06) diff --git a/package-lock.json b/package-lock.json index 08d1c55..d3323e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "geostyler-cli", - "version": "4.1.1", + "version": "4.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "geostyler-cli", - "version": "4.1.1", + "version": "4.1.2", "license": "BSD-2-Clause", "bin": { "geostyler-cli": "dist/geostyler.js" diff --git a/package.json b/package.json index e1fa30f..37c0200 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "geostyler-cli", - "version": "4.1.1", + "version": "4.1.2", "description": "", "main": "dist/geostyler.js", "files": [ diff --git a/src/version.ts b/src/version.ts index 7b60272..4aa5536 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export default '4.1.1'; +export default '4.1.2';