Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changeset Action: Version Packages + Publish #114

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/blue-teachers-share.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-parents-trade.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/young-kiwis-watch.md

This file was deleted.

6 changes: 6 additions & 0 deletions apps/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @apps/next

## 0.2.1

### Patch Changes

- @accelint/[email protected]

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/next",
"version": "0.2.0",
"version": "0.2.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
18 changes: 18 additions & 0 deletions packages/converters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions packages/converters/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@accelint/converters",
"version": "0.1.3",
"version": "0.2.0",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gohypergiant/standard-toolkit"
},
"type": "module",
"files": ["dist/**"],
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
Expand Down
7 changes: 7 additions & 0 deletions packages/design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @accelint/design-system

## 0.4.1

### Patch Changes

- Updated dependencies [13f0d6c]
- @accelint/[email protected]

## 0.4.0

### Minor Changes
Expand Down
6 changes: 4 additions & 2 deletions packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@accelint/design-system",
"version": "0.4.0",
"version": "0.4.1",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gohypergiant/standard-toolkit"
},
"type": "module",
"files": ["dist/**"],
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
Expand Down
14 changes: 14 additions & 0 deletions packages/geo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]

## 0.1.3

### Patch Changes
Expand Down
6 changes: 4 additions & 2 deletions packages/geo/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@accelint/geo",
"version": "0.1.3",
"version": "0.2.0",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gohypergiant/standard-toolkit"
},
"type": "module",
"files": ["dist/**"],
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
Expand Down
22 changes: 22 additions & 0 deletions packages/predicates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions packages/predicates/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@accelint/predicates",
"version": "0.1.3",
"version": "0.2.0",
"private": false,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gohypergiant/standard-toolkit"
},
"type": "module",
"files": ["dist/**"],
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
Expand Down