Skip to content

Commit

Permalink
chore(release): publish v1.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Jan 29, 2023
1 parent 59f1fa8 commit a722415
Show file tree
Hide file tree
Showing 26 changed files with 109 additions and 32 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Bug Fixes

- **cli:** round gas price to nearest integer ([#348](https://github.com/latticexyz/mud/issues/348)) ([ce07174](https://github.com/latticexyz/mud/commit/ce071747eb33ca9feceb0618af627ff845d2b1b8))
- **network:** throw errors from txQueue calls ([#351](https://github.com/latticexyz/mud/issues/351)) ([a811ff7](https://github.com/latticexyz/mud/commit/a811ff76e500bbc3e983f32c13877bdee855113d)), closes [#315](https://github.com/latticexyz/mud/issues/315)
- **phaserx:** reset game object masks when resetting embodied entity ([#349](https://github.com/latticexyz/mud/issues/349)) ([2153f69](https://github.com/latticexyz/mud/commit/2153f690a3df2277d5a23100715dacda66459684))

### Features

- **network:** add support for external wallets (eg MetaMask) ([#256](https://github.com/latticexyz/mud/issues/256)) ([bf0b5cf](https://github.com/latticexyz/mud/commit/bf0b5cff5f70903ef8b43a46ad07b649946b21a9))
- **solecs:** add deterministic storage location for systems, add storage access util ([#264](https://github.com/latticexyz/mud/issues/264)) ([f18c398](https://github.com/latticexyz/mud/commit/f18c39831f5d5ab0186529eb2cfaee4991570e6f))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package mud
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "1.33.1",
"version": "1.34.0",
"npmClient": "yarn",
"useWorkspaces": true,
"conventionalCommits": true,
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Bug Fixes

- **cli:** round gas price to nearest integer ([#348](https://github.com/latticexyz/mud/issues/348)) ([ce07174](https://github.com/latticexyz/mud/commit/ce071747eb33ca9feceb0618af627ff845d2b1b8))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/cli
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/cli",
"version": "1.33.1",
"version": "1.34.0",
"description": "Command line interface for mud",
"main": "dist/index.js",
"license": "MIT",
Expand Down Expand Up @@ -37,10 +37,10 @@
"typescript": "^4.6.4"
},
"dependencies": {
"@latticexyz/services": "^1.33.1",
"@latticexyz/solecs": "^1.33.1",
"@latticexyz/std-contracts": "^1.33.1",
"@latticexyz/utils": "^1.33.1",
"@latticexyz/services": "^1.34.0",
"@latticexyz/solecs": "^1.34.0",
"@latticexyz/std-contracts": "^1.34.0",
"@latticexyz/utils": "^1.34.0",
"@typechain/ethers-v5": "^10.1.1",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
Expand Down
4 changes: 4 additions & 0 deletions packages/ecs-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/ecs-browser

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/ecs-browser
Expand Down
8 changes: 4 additions & 4 deletions packages/ecs-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/ecs-browser",
"version": "1.33.1",
"version": "1.34.0",
"description": "Component Browser for RECS",
"license": "MIT",
"main": "src/index.ts",
Expand All @@ -21,9 +21,9 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/recs": "^1.33.1",
"@latticexyz/std-client": "^1.33.1",
"@latticexyz/utils": "^1.33.1",
"@latticexyz/recs": "^1.34.0",
"@latticexyz/std-client": "^1.34.0",
"@latticexyz/utils": "^1.34.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
Expand Down
10 changes: 10 additions & 0 deletions packages/network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Bug Fixes

- **network:** throw errors from txQueue calls ([#351](https://github.com/latticexyz/mud/issues/351)) ([a811ff7](https://github.com/latticexyz/mud/commit/a811ff76e500bbc3e983f32c13877bdee855113d)), closes [#315](https://github.com/latticexyz/mud/issues/315)

### Features

- **network:** add support for external wallets (eg MetaMask) ([#256](https://github.com/latticexyz/mud/issues/256)) ([bf0b5cf](https://github.com/latticexyz/mud/commit/bf0b5cff5f70903ef8b43a46ad07b649946b21a9))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/network
Expand Down
10 changes: 5 additions & 5 deletions packages/network/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/network",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"source": "src/index.ts",
"main": "src/index.ts",
"engines": {
Expand Down Expand Up @@ -47,10 +47,10 @@
"@ethersproject/abi": "^5.6.0",
"@ethersproject/providers": "^5.6.1",
"@improbable-eng/grpc-web": "^0.15.0",
"@latticexyz/recs": "^1.33.1",
"@latticexyz/services": "^1.33.1",
"@latticexyz/solecs": "^1.33.1",
"@latticexyz/utils": "^1.33.1",
"@latticexyz/recs": "^1.34.0",
"@latticexyz/services": "^1.34.0",
"@latticexyz/solecs": "^1.34.0",
"@latticexyz/utils": "^1.34.0",
"@protobuf-ts/grpcweb-transport": "^2.7.0",
"@types/debug": "^4.1.7",
"@types/google-protobuf": "^3.15.6",
Expand Down
4 changes: 4 additions & 0 deletions packages/noise/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/noise

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/noise
Expand Down
2 changes: 1 addition & 1 deletion packages/noise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/noise",
"version": "1.33.1",
"version": "1.34.0",
"source": "ts/index.ts",
"main": "dist/index.js",
"types": "dist/types.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/phaserx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Bug Fixes

- **phaserx:** reset game object masks when resetting embodied entity ([#349](https://github.com/latticexyz/mud/issues/349)) ([2153f69](https://github.com/latticexyz/mud/commit/2153f690a3df2277d5a23100715dacda66459684))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/phaserx
Expand Down
4 changes: 2 additions & 2 deletions packages/phaserx/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/phaserx",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"source": "src/index.ts",
"main": "src/index.ts",
"repository": {
Expand All @@ -21,7 +21,7 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/utils": "^1.33.1",
"@latticexyz/utils": "^1.34.0",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/react

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/react
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/react",
"version": "1.33.1",
"version": "1.34.0",
"description": "React tools for MUD client.",
"license": "MIT",
"source": "src/index.ts",
Expand All @@ -21,7 +21,7 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/recs": "^1.33.1",
"@latticexyz/recs": "^1.34.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/recs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/recs

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/recs
Expand Down
4 changes: 2 additions & 2 deletions packages/recs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/recs",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"source": "src/index.ts",
"main": "src/index.ts",
"type": "module",
Expand All @@ -22,7 +22,7 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/utils": "^1.33.1",
"@latticexyz/utils": "^1.34.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/services/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/services

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/services
Expand Down
2 changes: 1 addition & 1 deletion packages/services/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/services",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"description": "MUD services for enhanced interactions with on-chain ECS state",
"main": "protobuf/ts",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/solecs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Features

- **solecs:** add deterministic storage location for systems, add storage access util ([#264](https://github.com/latticexyz/mud/issues/264)) ([f18c398](https://github.com/latticexyz/mud/commit/f18c39831f5d5ab0186529eb2cfaee4991570e6f))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/solecs
Expand Down
2 changes: 1 addition & 1 deletion packages/solecs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/solecs",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"description": "Solidity Entity Component System",
"types": "./types/ethers-contracts/",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/std-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Features

- **network:** add support for external wallets (eg MetaMask) ([#256](https://github.com/latticexyz/mud/issues/256)) ([bf0b5cf](https://github.com/latticexyz/mud/commit/bf0b5cff5f70903ef8b43a46ad07b649946b21a9))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/std-client
Expand Down
10 changes: 5 additions & 5 deletions packages/std-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@latticexyz/std-client",
"version": "1.33.1",
"version": "1.34.0",
"description": "Standard library for MUD client.",
"license": "MIT",
"source": "src/index.ts",
Expand All @@ -21,10 +21,10 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/network": "^1.33.1",
"@latticexyz/recs": "^1.33.1",
"@latticexyz/solecs": "^1.33.1",
"@latticexyz/utils": "^1.33.1",
"@latticexyz/network": "^1.34.0",
"@latticexyz/recs": "^1.34.0",
"@latticexyz/solecs": "^1.34.0",
"@latticexyz/utils": "^1.34.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/std-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

### Features

- **solecs:** add deterministic storage location for systems, add storage access util ([#264](https://github.com/latticexyz/mud/issues/264)) ([f18c398](https://github.com/latticexyz/mud/commit/f18c39831f5d5ab0186529eb2cfaee4991570e6f))

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/std-contracts
Expand Down
4 changes: 2 additions & 2 deletions packages/std-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/std-contracts",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"description": "MUD Contracts Standard Library",
"types": "./types/ethers-contracts/",
"repository": {
Expand All @@ -24,7 +24,7 @@
"release": "npm publish || echo 'version already published'"
},
"devDependencies": {
"@latticexyz/solecs": "^1.33.1",
"@latticexyz/solecs": "^1.34.0",
"@rari-capital/solmate": "https://github.com/Rari-Capital/solmate.git#b6ae78e6ff490f8fec7695c7b65d06e5614f1b65",
"@typechain/ethers-v5": "^9.0.0",
"ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
Expand Down
4 changes: 4 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.34.0](https://github.com/latticexyz/mud/compare/v1.33.1...v1.34.0) (2023-01-29)

**Note:** Version bump only for package @latticexyz/utils

## [1.33.1](https://github.com/latticexyz/mud/compare/v1.33.0...v1.33.1) (2023-01-12)

**Note:** Version bump only for package @latticexyz/utils
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@latticexyz/utils",
"license": "MIT",
"version": "1.33.1",
"version": "1.34.0",
"type": "module",
"source": "src/index.ts",
"main": "src/index.ts",
Expand Down

0 comments on commit a722415

Please sign in to comment.