Skip to content

Commit b4155d8

Browse files
Version Packages
1 parent 0eb2556 commit b4155d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+293
-51
lines changed

.changeset/quick-frogs-fold.md

-6
This file was deleted.

.changeset/real-waves-bathe.md

-5
This file was deleted.

.changeset/swift-rabbits-appear.md

-7
This file was deleted.

.changeset/tasty-toys-deliver.md

-7
This file was deleted.

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## Version 2.2.0
2+
3+
Release date: Tue Aug 27 2024
4+
5+
### Minor changes
6+
7+
**[chore(explorer): update world explorer naming (#3069)](https://github.com/latticexyz/mud/commit/0eb25560cfc78354a5e6845c3244375759b71f4c)** (@latticexyz/explorer)
8+
9+
Initial release of the `@latticexyz/explorer` package. World Explorer is a standalone tool designed to explore and manage worlds. This initial release supports local worlds, with plans to extend support to any world in the future.
10+
11+
Read more on how to get started or contribute in the [World Explorer README](https://github.com/latticexyz/mud/blob/main/packages/explorer/README.md).
12+
13+
### Patch changes
14+
15+
**[feat(world): add namespaceLabel to system config (#3057)](https://github.com/latticexyz/mud/commit/04c675c946a0707956f38daad3fe516fde4a33a2)** (@latticexyz/config, @latticexyz/store)
16+
17+
Fixed a few type issues with `namespaceLabel` in tables and added/clarified TSDoc for config input/output objects.
18+
19+
**[fix(create-mud): update changeset package name + description (#3066)](https://github.com/latticexyz/mud/commit/bd4dffcabd6c6715df213e6c0c8b0631c9afc0b7)** (create-mud)
20+
21+
New projects created with `pnpm create mud` now include the World Explorer and SQLite indexer running as additional services.
22+
23+
**[feat(world): add namespaceLabel to system config (#3057)](https://github.com/latticexyz/mud/commit/04c675c946a0707956f38daad3fe516fde4a33a2)** (@latticexyz/cli, @latticexyz/world)
24+
25+
Add a strongly typed `namespaceLabel` to the system config output.
26+
It corresponds to the `label` of the namespace the system belongs to and can't be set manually.
27+
28+
---
29+
130
## Version 2.1.1
231

332
Release date: Tue Aug 20 2024

docs/pages/changelog.mdx

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## Version 2.2.0
2+
3+
Release date: Tue Aug 27 2024
4+
5+
### Minor changes
6+
7+
**[chore(explorer): update world explorer naming (#3069)](https://github.com/latticexyz/mud/commit/0eb25560cfc78354a5e6845c3244375759b71f4c)** (@latticexyz/explorer)
8+
9+
Initial release of the `@latticexyz/explorer` package. World Explorer is a standalone tool designed to explore and manage worlds. This initial release supports local worlds, with plans to extend support to any world in the future.
10+
11+
Read more on how to get started or contribute in the [World Explorer README](https://github.com/latticexyz/mud/blob/main/packages/explorer/README.md).
12+
13+
### Patch changes
14+
15+
**[feat(world): add namespaceLabel to system config (#3057)](https://github.com/latticexyz/mud/commit/04c675c946a0707956f38daad3fe516fde4a33a2)** (@latticexyz/config, @latticexyz/store)
16+
17+
Fixed a few type issues with `namespaceLabel` in tables and added/clarified TSDoc for config input/output objects.
18+
19+
**[fix(create-mud): update changeset package name + description (#3066)](https://github.com/latticexyz/mud/commit/bd4dffcabd6c6715df213e6c0c8b0631c9afc0b7)** (create-mud)
20+
21+
New projects created with `pnpm create mud` now include the World Explorer and SQLite indexer running as additional services.
22+
23+
**[feat(world): add namespaceLabel to system config (#3057)](https://github.com/latticexyz/mud/commit/04c675c946a0707956f38daad3fe516fde4a33a2)** (@latticexyz/cli, @latticexyz/world)
24+
25+
Add a strongly typed `namespaceLabel` to the system config output.
26+
It corresponds to the `label` of the namespace the system belongs to and can't be set manually.
27+
28+
---
29+
130
## Version 2.1.1
231

332
Release date: Tue Aug 20 2024

packages/abi-ts/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @latticexyz/abi-ts
22

3+
## 2.2.0
4+
35
## 2.1.1
46

57
## 2.1.0

packages/abi-ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/abi-ts",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Create TypeScript type declaration files (`.d.ts`) for your ABI JSON files.",
55
"repository": {
66
"type": "git",

packages/block-logs-stream/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @latticexyz/block-logs-stream
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- @latticexyz/common@2.2.0
8+
39
## 2.1.1
410

511
### Patch Changes

packages/block-logs-stream/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/block-logs-stream",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Create a stream of EVM block logs for events",
55
"repository": {
66
"type": "git",

packages/cli/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- 04c675c: Add a strongly typed `namespaceLabel` to the system config output.
8+
It corresponds to the `label` of the namespace the system belongs to and can't be set manually.
9+
- Updated dependencies [04c675c]
10+
- Updated dependencies [04c675c]
11+
- @latticexyz/config@2.2.0
12+
- @latticexyz/store@2.2.0
13+
- @latticexyz/world@2.2.0
14+
- @latticexyz/protocol-parser@2.2.0
15+
- @latticexyz/world-module-metadata@2.2.0
16+
- @latticexyz/abi-ts@2.2.0
17+
- @latticexyz/common@2.2.0
18+
- @latticexyz/gas-report@2.2.0
19+
- @latticexyz/schema-type@2.2.0
20+
- @latticexyz/utils@2.2.0
21+
322
## 2.1.1
423

524
### Patch Changes

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/cli",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Command line interface for mud",
55
"repository": {
66
"type": "git",

packages/common/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- @latticexyz/schema-type@2.2.0
8+
39
## 2.1.1
410

511
### Patch Changes

packages/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/common",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Common low level logic shared between packages",
55
"repository": {
66
"type": "git",

packages/config/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- 04c675c: Fixed a few type issues with `namespaceLabel` in tables and added/clarified TSDoc for config input/output objects.
8+
- @latticexyz/common@2.2.0
9+
- @latticexyz/schema-type@2.2.0
10+
311
## 2.1.1
412

513
### Patch Changes

packages/config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/config",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Config for Store and World",
55
"repository": {
66
"type": "git",

packages/create-mud/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- 1a96544: New projects created with `pnpm create mud` now include the World Explorer and SQLite indexer running as additional services.
8+
39
## 2.1.1
410

511
### Patch Changes

packages/create-mud/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-mud",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Create a new MUD project",
55
"license": "MIT",
66
"author": "Lattice <[email protected]>",

packages/dev-tools/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @latticexyz/dev-tools
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [04c675c]
8+
- Updated dependencies [04c675c]
9+
- @latticexyz/store@2.2.0
10+
- @latticexyz/world@2.2.0
11+
- @latticexyz/store-sync@2.2.0
12+
- @latticexyz/react@2.2.0
13+
- @latticexyz/common@2.2.0
14+
- @latticexyz/recs@2.2.0
15+
- @latticexyz/schema-type@2.2.0
16+
- @latticexyz/utils@2.2.0
17+
318
## 2.1.1
419

520
### Patch Changes

packages/dev-tools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/dev-tools",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "MUD developer tools",
55
"repository": {
66
"type": "git",

packages/explorer/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# @latticexyz/explorer
2+
3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- f1d8d71: Initial release of the `@latticexyz/explorer` package. World Explorer is a standalone tool designed to explore and manage worlds. This initial release supports local worlds, with plans to extend support to any world in the future.
8+
9+
Read more on how to get started or contribute in the [World Explorer README](https://github.com/latticexyz/mud/blob/main/packages/explorer/README.md).
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [04c675c]
14+
- Updated dependencies [04c675c]
15+
- @latticexyz/store@2.2.0
16+
- @latticexyz/world@2.2.0
17+
- @latticexyz/protocol-parser@2.2.0
18+
- @latticexyz/store-sync@2.2.0
19+
- @latticexyz/common@2.2.0
20+
- @latticexyz/schema-type@2.2.0

packages/explorer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/explorer",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "World Explorer is a tool for visually exploring and manipulating the state of worlds",
55
"type": "module",
66
"bin": {

packages/faucet/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @latticexyz/faucet
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- @latticexyz/common@2.2.0
8+
39
## 2.1.1
410

511
### Patch Changes

packages/faucet/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/faucet",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Faucet API for Lattice testnet",
55
"repository": {
66
"type": "git",

packages/gas-report/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Change Log
22

3+
## 2.2.0
4+
35
## 2.1.1
46

57
## 2.1.0

packages/gas-report/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/gas-report",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Gas reporter for specific lines within forge tests",
55
"repository": {
66
"type": "git",

packages/protocol-parser/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @latticexyz/protocol-parser
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [04c675c]
8+
- @latticexyz/config@2.2.0
9+
- @latticexyz/common@2.2.0
10+
- @latticexyz/schema-type@2.2.0
11+
312
## 2.1.1
413

514
### Patch Changes

packages/protocol-parser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/protocol-parser",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Parser utilities for the MUD protocol",
55
"repository": {
66
"type": "git",

packages/query/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @latticexyz/query
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [04c675c]
8+
- @latticexyz/config@2.2.0
9+
- @latticexyz/store@2.2.0
10+
- @latticexyz/common@2.2.0
11+
- @latticexyz/schema-type@2.2.0
12+
313
## 2.1.1
414

515
### Patch Changes

packages/query/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/query",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Tools for interacting with the MUD query API",
55
"repository": {
66
"type": "git",

packages/react/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 2.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [04c675c]
8+
- @latticexyz/store@2.2.0
9+
- @latticexyz/recs@2.2.0
10+
311
## 2.1.1
412

513
### Patch Changes

packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@latticexyz/react",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "React tools for MUD client.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)