diff --git a/.changeset/blue-teachers-share.md b/.changeset/blue-teachers-share.md deleted file mode 100644 index db76c157..00000000 --- a/.changeset/blue-teachers-share.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@accelint/geo": minor ---- - -Add coordinate parsing capability; parse string into object with conversion -options: MGRS, UTM, and lat/lon DD, DDM, DMS. Some error messaging is included -to be helpful for users and debuggers. diff --git a/.changeset/fuzzy-parents-trade.md b/.changeset/fuzzy-parents-trade.md deleted file mode 100644 index f426fa1a..00000000 --- a/.changeset/fuzzy-parents-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@accelint/predicates": patch ---- - -Improve performance of is-noyes. diff --git a/.changeset/young-kiwis-watch.md b/.changeset/young-kiwis-watch.md deleted file mode 100644 index f9a4c66c..00000000 --- a/.changeset/young-kiwis-watch.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@accelint/converters": minor -"@accelint/predicates": minor ---- - -The `toBoolean` function (packages/converters) centralizes the logic for coercing a value -to a boolean which enables the predicate functions (packages/predicates/src/is-noyes) to -be more specific in what they compare against rather than them simply being alias names -to broad validation. The available predicates are now: - -- `isAnyFalsy` -- `isAnyTruthy` -- `isFalse` -- `isTrue` -- `isOn` -- `isOff` -- `isNo` -- `isYes` diff --git a/apps/next/CHANGELOG.md b/apps/next/CHANGELOG.md index ee161596..afebf9dd 100644 --- a/apps/next/CHANGELOG.md +++ b/apps/next/CHANGELOG.md @@ -1,5 +1,11 @@ # @apps/next +## 0.2.1 + +### Patch Changes + +- @accelint/design-system@0.4.1 + ## 0.2.0 ### Minor Changes diff --git a/apps/next/package.json b/apps/next/package.json index 514c1c6e..8c0acac2 100644 --- a/apps/next/package.json +++ b/apps/next/package.json @@ -1,6 +1,6 @@ { "name": "@apps/next", - "version": "0.2.0", + "version": "0.2.1", "private": true, "type": "module", "scripts": { diff --git a/packages/converters/CHANGELOG.md b/packages/converters/CHANGELOG.md index 329207ef..4fa6e65f 100644 --- a/packages/converters/CHANGELOG.md +++ b/packages/converters/CHANGELOG.md @@ -1,5 +1,23 @@ # @accelint/converters +## 0.2.0 + +### Minor Changes + +- 13f0d6c: The `toBoolean` function (packages/converters) centralizes the logic for coercing a value + to a boolean which enables the predicate functions (packages/predicates/src/is-noyes) to + be more specific in what they compare against rather than them simply being alias names + to broad validation. The available predicates are now: + + - `isAnyFalsy` + - `isAnyTruthy` + - `isFalse` + - `isTrue` + - `isOn` + - `isOff` + - `isNo` + - `isYes` + ## 0.1.3 ### Patch Changes diff --git a/packages/converters/package.json b/packages/converters/package.json index c5ee0120..ff9391e3 100644 --- a/packages/converters/package.json +++ b/packages/converters/package.json @@ -1,6 +1,6 @@ { "name": "@accelint/converters", - "version": "0.1.3", + "version": "0.2.0", "private": false, "license": "Apache-2.0", "repository": { @@ -8,7 +8,9 @@ "url": "https://github.com/gohypergiant/standard-toolkit" }, "type": "module", - "files": ["dist/**"], + "files": [ + "dist/**" + ], "types": "./dist/index.d.ts", "exports": { ".": { diff --git a/packages/design-system/CHANGELOG.md b/packages/design-system/CHANGELOG.md index d983acff..44d1d273 100644 --- a/packages/design-system/CHANGELOG.md +++ b/packages/design-system/CHANGELOG.md @@ -1,5 +1,12 @@ # @accelint/design-system +## 0.4.1 + +### Patch Changes + +- Updated dependencies [13f0d6c] + - @accelint/converters@0.2.0 + ## 0.4.0 ### Minor Changes diff --git a/packages/design-system/package.json b/packages/design-system/package.json index 81bc819d..3a6d07c4 100644 --- a/packages/design-system/package.json +++ b/packages/design-system/package.json @@ -1,6 +1,6 @@ { "name": "@accelint/design-system", - "version": "0.4.0", + "version": "0.4.1", "private": false, "license": "Apache-2.0", "repository": { @@ -8,7 +8,9 @@ "url": "https://github.com/gohypergiant/standard-toolkit" }, "type": "module", - "files": ["dist/**"], + "files": [ + "dist/**" + ], "types": "./dist/index.d.ts", "exports": { ".": { diff --git a/packages/geo/CHANGELOG.md b/packages/geo/CHANGELOG.md index ddf5091f..266ab92c 100644 --- a/packages/geo/CHANGELOG.md +++ b/packages/geo/CHANGELOG.md @@ -1,5 +1,19 @@ # @accelint/geo +## 0.2.0 + +### Minor Changes + +- 6c23f31: Add coordinate parsing capability; parse string into object with conversion + options: MGRS, UTM, and lat/lon DD, DDM, DMS. Some error messaging is included + to be helpful for users and debuggers. + +### Patch Changes + +- Updated dependencies [4ceec7e] +- Updated dependencies [13f0d6c] + - @accelint/predicates@0.2.0 + ## 0.1.3 ### Patch Changes diff --git a/packages/geo/package.json b/packages/geo/package.json index 0858886f..6755fd9e 100644 --- a/packages/geo/package.json +++ b/packages/geo/package.json @@ -1,6 +1,6 @@ { "name": "@accelint/geo", - "version": "0.1.3", + "version": "0.2.0", "private": false, "license": "Apache-2.0", "repository": { @@ -8,7 +8,9 @@ "url": "https://github.com/gohypergiant/standard-toolkit" }, "type": "module", - "files": ["dist/**"], + "files": [ + "dist/**" + ], "types": "./dist/index.d.ts", "exports": { ".": { diff --git a/packages/predicates/CHANGELOG.md b/packages/predicates/CHANGELOG.md index 8f6295ad..5a072ef8 100644 --- a/packages/predicates/CHANGELOG.md +++ b/packages/predicates/CHANGELOG.md @@ -1,5 +1,27 @@ # @accelint/predicates +## 0.2.0 + +### Minor Changes + +- 13f0d6c: The `toBoolean` function (packages/converters) centralizes the logic for coercing a value + to a boolean which enables the predicate functions (packages/predicates/src/is-noyes) to + be more specific in what they compare against rather than them simply being alias names + to broad validation. The available predicates are now: + + - `isAnyFalsy` + - `isAnyTruthy` + - `isFalse` + - `isTrue` + - `isOn` + - `isOff` + - `isNo` + - `isYes` + +### Patch Changes + +- 4ceec7e: Improve performance of is-noyes. + ## 0.1.3 ### Patch Changes diff --git a/packages/predicates/package.json b/packages/predicates/package.json index 2cde0e6f..492d1cc9 100644 --- a/packages/predicates/package.json +++ b/packages/predicates/package.json @@ -1,6 +1,6 @@ { "name": "@accelint/predicates", - "version": "0.1.3", + "version": "0.2.0", "private": false, "license": "Apache-2.0", "repository": { @@ -8,7 +8,9 @@ "url": "https://github.com/gohypergiant/standard-toolkit" }, "type": "module", - "files": ["dist/**"], + "files": [ + "dist/**" + ], "types": "./dist/index.d.ts", "exports": { ".": {