Skip to content

Commit

Permalink
chore(changeset): release packages (#252)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 13, 2024
1 parent 82289e4 commit c80a3df
Show file tree
Hide file tree
Showing 14 changed files with 86 additions and 48 deletions.
10 changes: 0 additions & 10 deletions .changeset/fifty-toes-float.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/late-keys-drive.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/popular-camels-rescue.md

This file was deleted.

18 changes: 18 additions & 0 deletions packages/arancini-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @arancini/core

## 6.2.0

### Minor Changes

- 9096041: feat: stop using bitsets for query evaluation, evaluate queries using object keys

The bitset implementation as-is is slower than just checking object keys, even for large numbers of component types.

This may be revisited in the future, but for now, arancini will use object keys for query evaluation to improve performance and simplify the library.

- 9096041: feat: remove World components constructor parameter and `registerComponents`

There is no longer any need to register components when creating a world.

### Patch Changes

- @arancini/events@6.2.0

## 6.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/arancini-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"packageManager": "yarn@3.2.1",
"author": "Isaac Mason <isaac@isaacmason.com>",
"license": "MIT",
"version": "6.1.3",
"version": "6.2.0",
"homepage": "https://github.com/isaac-mason/arancini",
"bugs": {
"url": "https://github.com/isaac-mason/arancini/issues"
Expand All @@ -22,7 +22,7 @@
"build:before": "rm -rf dist"
},
"dependencies": {
"@arancini/events": "6.1.3"
"@arancini/events": "6.2.0"
},
"devDependencies": {
"@isaac-mason/eslint-config-typescript": "^0.0.4",
Expand Down
2 changes: 2 additions & 0 deletions packages/arancini-events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @arancini/events

## 6.2.0

## 6.1.3

## 6.1.2
Expand Down
2 changes: 1 addition & 1 deletion packages/arancini-events/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"packageManager": "yarn@3.2.1",
"author": "Isaac Mason <isaac@isaacmason.com>",
"license": "MIT",
"version": "6.1.3",
"version": "6.2.0",
"homepage": "https://github.com/isaac-mason/arancini",
"bugs": {
"url": "https://github.com/isaac-mason/arancini/issues"
Expand Down
8 changes: 8 additions & 0 deletions packages/arancini-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @arancini/react

## 6.2.0

### Patch Changes

- Updated dependencies [9096041]
- Updated dependencies [9096041]
- @arancini/core@6.2.0

## 6.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/arancini-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"packageManager": "yarn@3.2.1",
"author": "Isaac Mason <isaac@isaacmason.com>",
"license": "MIT",
"version": "6.1.3",
"version": "6.2.0",
"scripts": {
"test": "tsc && vitest run --coverage",
"test:watch": "vitest",
Expand All @@ -19,7 +19,7 @@
"build:before": "rm -rf dist"
},
"dependencies": {
"@arancini/core": "6.1.3"
"@arancini/core": "6.2.0"
},
"peerDependencies": {
"react": "^18.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/arancini-systems/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @arancini/systems

## 6.2.0

### Patch Changes

- Updated dependencies [9096041]
- Updated dependencies [9096041]
- @arancini/core@6.2.0

## 6.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/arancini-systems/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"packageManager": "yarn@3.2.1",
"author": "Isaac Mason <isaac@isaacmason.com>",
"license": "MIT",
"version": "6.1.3",
"version": "6.2.0",
"homepage": "https://github.com/isaac-mason/arancini",
"bugs": {
"url": "https://github.com/isaac-mason/arancini/issues"
Expand All @@ -22,7 +22,7 @@
"build:before": "rm -rf dist"
},
"dependencies": {
"@arancini/core": "6.1.3"
"@arancini/core": "6.2.0"
},
"devDependencies": {
"@isaac-mason/eslint-config-typescript": "^0.0.4",
Expand Down
27 changes: 27 additions & 0 deletions packages/arancini/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# arancini

## 6.2.0

### Minor Changes

- 9096041: feat: stop using bitsets for query evaluation, evaluate queries using object keys

The bitset implementation as-is is slower than just checking object keys, even for large numbers of component types.

This may be revisited in the future, but for now, arancini will use object keys for query evaluation to improve performance and simplify the library.

- 9096041: feat: remove World components constructor parameter and `registerComponents`

There is no longer any need to register components when creating a world.

- 82289e4: feat: remove arancini/pool entrypoint

Object pools are no longer used internally, so @arancini/pool is no longer necessary.

### Patch Changes

- Updated dependencies [9096041]
- Updated dependencies [9096041]
- @arancini/core@6.2.0
- @arancini/react@6.2.0
- @arancini/systems@6.2.0
- @arancini/events@6.2.0

## 6.1.3

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/arancini/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"packageManager": "yarn@3.2.1",
"author": "Isaac Mason <isaac@isaacmason.com>",
"license": "MIT",
"version": "6.1.3",
"version": "6.2.0",
"homepage": "https://github.com/isaac-mason/arancini",
"bugs": {
"url": "https://github.com/isaac-mason/arancini/issues"
Expand All @@ -22,10 +22,10 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@arancini/core": "6.1.3",
"@arancini/events": "6.1.3",
"@arancini/react": "6.1.3",
"@arancini/systems": "6.1.3"
"@arancini/core": "6.2.0",
"@arancini/events": "6.2.0",
"@arancini/react": "6.2.0",
"@arancini/systems": "6.2.0"
},
"peerDependencies": {
"react": "^18.0.0",
Expand Down
22 changes: 11 additions & 11 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ __metadata:
languageName: node
linkType: hard

"@arancini/core@npm:6.1.3, @arancini/core@workspace:packages/arancini-core":
"@arancini/core@npm:6.2.0, @arancini/core@workspace:packages/arancini-core":
version: 0.0.0-use.local
resolution: "@arancini/core@workspace:packages/arancini-core"
dependencies:
"@arancini/events": "npm:6.1.3"
"@arancini/events": "npm:6.2.0"
"@isaac-mason/eslint-config-typescript": "npm:^0.0.4"
"@rollup/plugin-commonjs": "npm:^25.0.7"
"@rollup/plugin-node-resolve": "npm:^15.0.1"
Expand All @@ -52,7 +52,7 @@ __metadata:
languageName: unknown
linkType: soft

"@arancini/events@npm:6.1.3, @arancini/events@workspace:packages/arancini-events":
"@arancini/events@npm:6.2.0, @arancini/events@workspace:packages/arancini-events":
version: 0.0.0-use.local
resolution: "@arancini/events@workspace:packages/arancini-events"
dependencies:
Expand All @@ -74,11 +74,11 @@ __metadata:
languageName: unknown
linkType: soft

"@arancini/react@npm:6.1.3, @arancini/react@workspace:packages/arancini-react":
"@arancini/react@npm:6.2.0, @arancini/react@workspace:packages/arancini-react":
version: 0.0.0-use.local
resolution: "@arancini/react@workspace:packages/arancini-react"
dependencies:
"@arancini/core": "npm:6.1.3"
"@arancini/core": "npm:6.2.0"
"@isaac-mason/eslint-config-typescript": "npm:^0.0.4"
"@rollup/plugin-commonjs": "npm:^25.0.7"
"@rollup/plugin-node-resolve": "npm:^15.0.1"
Expand All @@ -105,11 +105,11 @@ __metadata:
languageName: unknown
linkType: soft

"@arancini/systems@npm:6.1.3, @arancini/systems@workspace:packages/arancini-systems":
"@arancini/systems@npm:6.2.0, @arancini/systems@workspace:packages/arancini-systems":
version: 0.0.0-use.local
resolution: "@arancini/systems@workspace:packages/arancini-systems"
dependencies:
"@arancini/core": "npm:6.1.3"
"@arancini/core": "npm:6.2.0"
"@isaac-mason/eslint-config-typescript": "npm:^0.0.4"
"@rollup/plugin-commonjs": "npm:^25.0.7"
"@rollup/plugin-node-resolve": "npm:^15.0.1"
Expand Down Expand Up @@ -6288,10 +6288,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "arancini@workspace:packages/arancini"
dependencies:
"@arancini/core": "npm:6.1.3"
"@arancini/events": "npm:6.1.3"
"@arancini/react": "npm:6.1.3"
"@arancini/systems": "npm:6.1.3"
"@arancini/core": "npm:6.2.0"
"@arancini/events": "npm:6.2.0"
"@arancini/react": "npm:6.2.0"
"@arancini/systems": "npm:6.2.0"
"@babel/preset-env": "npm:^7.23.7"
"@babel/preset-react": "npm:^7.22.15"
"@babel/preset-typescript": "npm:^7.23.3"
Expand Down

0 comments on commit c80a3df

Please sign in to comment.