diff --git a/composer.json b/composer.json index 4896de7..9097c5f 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "annexare/countries-list", - "version": "3.0.0", + "version": "3.0.1", "description": "Continents & countries: ISO 3166-1 alpha-2 code, name, ISO 639-1 languages, capital, currency, native name, phone. JSON, CSV and SQL.", "type": "library", "keywords": [ diff --git a/dist/package.json b/dist/package.json index 6ddbd12..2b2d6a7 100644 --- a/dist/package.json +++ b/dist/package.json @@ -1,6 +1,6 @@ { "name": "countries-list", - "version": "3.0.0", + "version": "3.0.1", "description": "Continents & countries: ISO 3166-1 alpha-2 code, name, ISO 639-1 languages, capital, currency, native name, phone. JSON, CSV and SQL.", "type": "module", "exports": { diff --git a/package-lock.json b/package-lock.json index f8b0c93..22c61d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5370,7 +5370,7 @@ } }, "packages/countries": { - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "devDependencies": { "tsup": "7.2.0", diff --git a/packages/countries/package.json b/packages/countries/package.json index 6330adb..a609ff3 100644 --- a/packages/countries/package.json +++ b/packages/countries/package.json @@ -1,6 +1,6 @@ { "name": "countries", - "version": "3.0.0", + "version": "3.0.1", "type": "module", "publishConfig": { "access": "public" diff --git a/packages/scripts/version.ts b/packages/scripts/version.ts index 0d014ae..32533fb 100644 --- a/packages/scripts/version.ts +++ b/packages/scripts/version.ts @@ -4,7 +4,7 @@ import fs from 'node:fs' import path from 'node:path' import compare from 'semver-compare' -import distComposer from '../../dist/composer.json' assert { type: 'json' } +import distComposer from '../../composer.json' assert { type: 'json' } import distPkg from '../../dist/package.json' assert { type: 'json' } import pkg from '../countries/package.json' assert { type: 'json' } @@ -27,7 +27,7 @@ const saveJsonFile = (filePath: string, data: unknown) => { console.log(chalk.bold('\nUpdating files:\n')) -saveJsonFile('../../dist/composer.json', { +saveJsonFile('../../composer.json', { ...distComposer, version, })