From 06ce8f98ff52cf979db1c2528869235667ee91a1 Mon Sep 17 00:00:00 2001 From: casperiv0 <53900565+casperiv0@users.noreply.github.com> Date: Fri, 25 Aug 2023 08:20:50 +0200 Subject: [PATCH] chore(release): 0.10.1 --- integrations/alpr/fxmanifest.lua | 2 +- integrations/call911/fxmanifest.lua | 2 +- integrations/calltaxi/fxmanifest.lua | 2 +- integrations/calltow/fxmanifest.lua | 2 +- integrations/postals/fxmanifest.lua | 2 +- integrations/sync/fxmanifest.lua | 2 +- package.json | 2 +- scripts/bump-version.mjs | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/integrations/alpr/fxmanifest.lua b/integrations/alpr/fxmanifest.lua index 13f8ef6..0436845 100644 --- a/integrations/alpr/fxmanifest.lua +++ b/integrations/alpr/fxmanifest.lua @@ -3,7 +3,7 @@ game "gta5" author "Casper Iversen" description "ALPR integration with support for Wraith ARS 2X" -version "0.10.0" +version "0.10.1" server_scripts {"server/server.js"} client_scripts {"client/client.js"} diff --git a/integrations/call911/fxmanifest.lua b/integrations/call911/fxmanifest.lua index 40b7283..9072950 100644 --- a/integrations/call911/fxmanifest.lua +++ b/integrations/call911/fxmanifest.lua @@ -3,7 +3,7 @@ game "gta5" author "Casper Iversen" description "/call911 command that connects to SnailyCADv4" -version "0.10.0" +version "0.10.1" server_scripts {"server/server.js"} client_scripts {"client/client.js"} diff --git a/integrations/calltaxi/fxmanifest.lua b/integrations/calltaxi/fxmanifest.lua index c34f490..a75b184 100644 --- a/integrations/calltaxi/fxmanifest.lua +++ b/integrations/calltaxi/fxmanifest.lua @@ -3,7 +3,7 @@ game "gta5" author "Casper Iversen" description "/calltaxi command that connects to SnailyCADv4" -version "0.10.0" +version "0.10.1" server_scripts {"server/server.js"} client_scripts {"client/client.js"} diff --git a/integrations/calltow/fxmanifest.lua b/integrations/calltow/fxmanifest.lua index 6af3b62..ff57caf 100644 --- a/integrations/calltow/fxmanifest.lua +++ b/integrations/calltow/fxmanifest.lua @@ -3,7 +3,7 @@ game "gta5" author "Casper Iversen" description "/calltow command that connects to SnailyCADv4" -version "0.10.0" +version "0.10.1" server_scripts {"server/server.js"} client_scripts {"client/client.js"} diff --git a/integrations/postals/fxmanifest.lua b/integrations/postals/fxmanifest.lua index 5e37286..996a38d 100644 --- a/integrations/postals/fxmanifest.lua +++ b/integrations/postals/fxmanifest.lua @@ -3,5 +3,5 @@ game "gta5" author "Casper Iversen" description "This allow you to define custom postals" -version "0.10.0" +version "0.10.1" diff --git a/integrations/sync/fxmanifest.lua b/integrations/sync/fxmanifest.lua index 1fa7779..9ffa331 100644 --- a/integrations/sync/fxmanifest.lua +++ b/integrations/sync/fxmanifest.lua @@ -3,7 +3,7 @@ game "gta5" author "Casper Iversen" description "Sync SnailyCAD with FiveM." -version "0.10.0" +version "0.10.1" ui_page "nui/index.html" diff --git a/package.json b/package.json index 832efa3..d52e579 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@snailycad/fivem-integrations", - "version": "0.10.0", + "version": "0.10.1", "author": { "name": "Casper Iversen", "url": "https://casperiv.dev" diff --git a/scripts/bump-version.mjs b/scripts/bump-version.mjs index 60140c2..3a3115c 100644 --- a/scripts/bump-version.mjs +++ b/scripts/bump-version.mjs @@ -5,7 +5,7 @@ const BASE_PATH = path.resolve(process.cwd(), "integrations"); const INTEGRATIONS = await fs.readdir(BASE_PATH); const [, , version] = process.argv; -const FX_VERSION_REGEX = /version "[0-9].[0-9].[0-9]?"/; +const FX_VERSION_REGEX = /version "[0-9].[0-9]+.[0-9]+?"/; if (!version) { throw new Error("Must specify a new version.");