diff --git a/CHANGELOG.md b/CHANGELOG.md index 53098bf..c6cc27c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + +### Features + +* **eslint-config:** migrate to stylistic plugin ([e5393ad](https://github.com/TrigenSoftware/scripts/commit/e5393ade8c3b5a5a3e14a5114aee131c3dc5aebe)) +* **scripts:** enhacne output streaming ([a56fc43](https://github.com/TrigenSoftware/scripts/commit/a56fc43bbf83484e9d205be7ffa258b16970694c)) +* **stylelint-config:** introduce stylelint config ([#107](https://github.com/TrigenSoftware/scripts/issues/107)) ([a3437f3](https://github.com/TrigenSoftware/scripts/commit/a3437f3f375b5e6c5bd6e904c58cefd9b13ce698)) + +### Bug Fixes + +* **deps:** update dependency @octokit/rest to v22 ([#90](https://github.com/TrigenSoftware/scripts/issues/90)) ([9aee0a1](https://github.com/TrigenSoftware/scripts/commit/9aee0a1d20db458d0f05fc77fbeada4a01033c6c)) +* **deps:** update dependency npm-package-json-lint to v9 ([#104](https://github.com/TrigenSoftware/scripts/issues/104)) ([30502c4](https://github.com/TrigenSoftware/scripts/commit/30502c4d4af0befcd61affd3053e9b98f361ad80)) +* **deps:** update dependency npm-package-json-lint-config-default to v8 ([#105](https://github.com/TrigenSoftware/scripts/issues/105)) ([466a941](https://github.com/TrigenSoftware/scripts/commit/466a941ae43bc53de69b95191f2c49c4a096022e)) +* **deps:** update dependency p-limit to v6 ([#106](https://github.com/TrigenSoftware/scripts/issues/106)) ([7853178](https://github.com/TrigenSoftware/scripts/commit/785317899c62fd09bc5b5560696d81f379609f7b)) +* **eslint-config:** turn off radix ([f83d1fd](https://github.com/TrigenSoftware/scripts/commit/f83d1fd5f51549f2090047da1f8864d244d5d869)) + ## [8.0.0-alpha.34](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.33...v8.0.0-alpha.34) (2025-07-06) ### Features diff --git a/package.json b/package.json index 2a0cf68..9d53e36 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "scripts", "type": "module", "private": true, - "version": "8.0.0-alpha.34", + "version": "8.0.0", "description": "Scripts and configs for TrigenSoftware's projects.", "author": "dangreen", "license": "MIT", diff --git a/packages/browserslist-config/CHANGELOG.md b/packages/browserslist-config/CHANGELOG.md index 94754c4..41aea08 100644 --- a/packages/browserslist-config/CHANGELOG.md +++ b/packages/browserslist-config/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) **Note:** Version bump only for package @trigen/browserslist-config diff --git a/packages/browserslist-config/package.json b/packages/browserslist-config/package.json index 8b238d0..2e34021 100644 --- a/packages/browserslist-config/package.json +++ b/packages/browserslist-config/package.json @@ -1,6 +1,6 @@ { "name": "@trigen/browserslist-config", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "Trigen's Browserslist config.", "author": "dangreen", "license": "MIT", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index f91538e..e049843 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + +### Features + +* migrate to stylistic plugin ([e5393ad](https://github.com/TrigenSoftware/scripts/commit/e5393ade8c3b5a5a3e14a5114aee131c3dc5aebe)) + +### Bug Fixes + +* turn off radix ([f83d1fd](https://github.com/TrigenSoftware/scripts/commit/f83d1fd5f51549f2090047da1f8864d244d5d869)) + ## [8.0.0-alpha.34](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.33...v8.0.0-alpha.34) (2025-07-06) ### Features diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 0748b11..13b8a7d 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/eslint-config", "type": "module", - "version": "8.0.0-alpha.34", + "version": "8.0.0", "description": "Trigen's ESLint config.", "author": "dangreen", "license": "MIT", diff --git a/packages/lint-package-json/CHANGELOG.md b/packages/lint-package-json/CHANGELOG.md index 463df93..9729694 100644 --- a/packages/lint-package-json/CHANGELOG.md +++ b/packages/lint-package-json/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) ### Bug Fixes diff --git a/packages/lint-package-json/package.json b/packages/lint-package-json/package.json index d0d435c..1a4d0b8 100644 --- a/packages/lint-package-json/package.json +++ b/packages/lint-package-json/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/lint-package-json", "type": "module", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "Shortcut to run npm-package-json-lint with @trigen/npm-package-json-lint-config.", "author": "dangreen", "license": "MIT", diff --git a/packages/npm-package-json-lint-config/CHANGELOG.md b/packages/npm-package-json-lint-config/CHANGELOG.md index 6baeda6..062f6e4 100644 --- a/packages/npm-package-json-lint-config/CHANGELOG.md +++ b/packages/npm-package-json-lint-config/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) ### Bug Fixes diff --git a/packages/npm-package-json-lint-config/package.json b/packages/npm-package-json-lint-config/package.json index c3a83c4..b2292d5 100644 --- a/packages/npm-package-json-lint-config/package.json +++ b/packages/npm-package-json-lint-config/package.json @@ -1,6 +1,6 @@ { "name": "@trigen/npm-package-json-lint-config", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "Trigen's npm-package-json-lint config.", "author": "dangreen", "license": "MIT", diff --git a/packages/project-files/CHANGELOG.md b/packages/project-files/CHANGELOG.md index 2be7bc5..9624955 100644 --- a/packages/project-files/CHANGELOG.md +++ b/packages/project-files/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) **Note:** Version bump only for package @trigen/project-files diff --git a/packages/project-files/package.json b/packages/project-files/package.json index 280525a..0ff02ca 100644 --- a/packages/project-files/package.json +++ b/packages/project-files/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/project-files", "type": "module", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "CLI tool for download snippets files.", "author": "dangreen", "license": "MIT", diff --git a/packages/scripts/CHANGELOG.md b/packages/scripts/CHANGELOG.md index 70aac37..94b897c 100644 --- a/packages/scripts/CHANGELOG.md +++ b/packages/scripts/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + +### Features + +* enhacne output streaming ([a56fc43](https://github.com/TrigenSoftware/scripts/commit/a56fc43bbf83484e9d205be7ffa258b16970694c)) + ## [8.0.0-alpha.33](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2025-01-01) ### Bug Fixes diff --git a/packages/scripts/package.json b/packages/scripts/package.json index de596ad..2d76464 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/scripts", "type": "module", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "CLI tool for running scripts.", "author": "dangreen", "license": "MIT", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md new file mode 100644 index 0000000..f6437d4 --- /dev/null +++ b/packages/stylelint-config/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [8.0.0](https://github.com/TrigenSoftware/scripts/compare/v8.0.0-alpha.34...v8.0.0) (2025-07-08) + +### Features + +* introduce stylelint config ([#107](https://github.com/TrigenSoftware/scripts/issues/107)) ([a3437f3](https://github.com/TrigenSoftware/scripts/commit/a3437f3f375b5e6c5bd6e904c58cefd9b13ce698)) diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index 74eb0e5..2a204a6 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,7 +1,7 @@ { "name": "@trigen/stylelint-config", "type": "module", - "version": "8.0.0-alpha.33", + "version": "8.0.0", "description": "Trigen's Stylelint config.", "author": "dangreen", "license": "MIT",