From c28b05148de5939c1ac03fb5048063a9f0267e32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2020 19:06:25 -0400 Subject: [PATCH] Update v0.3.2 (#46) Co-authored-by: 3mcd <3mcd@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ examples/basic/CHANGELOG.md | 11 +++++++++++ examples/basic/package.json | 4 ++-- examples/filters/CHANGELOG.md | 11 +++++++++++ examples/filters/package.json | 4 ++-- examples/networking/CHANGELOG.md | 11 +++++++++++ examples/networking/package.json | 8 ++++---- lerna.json | 2 +- packages/ecs/CHANGELOG.md | 11 +++++++++++ packages/ecs/package.json | 2 +- packages/hrtime-loop/CHANGELOG.md | 11 +++++++++++ packages/hrtime-loop/package.json | 2 +- packages/net/CHANGELOG.md | 11 +++++++++++ packages/net/package.json | 4 ++-- 14 files changed, 90 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f49b038b..ca73a859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/examples/basic/CHANGELOG.md b/examples/basic/CHANGELOG.md index 669fe85f..260ccf97 100644 --- a/examples/basic/CHANGELOG.md +++ b/examples/basic/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/examples/basic/package.json b/examples/basic/package.json index 3aa92c72..708a5a8b 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -1,7 +1,7 @@ { "name": "@javelin/example-basic", "private": true, - "version": "0.3.1", + "version": "0.3.2", "main": "index.js", "license": "MIT", "devDependencies": { @@ -12,7 +12,7 @@ "webpack-cli": "^3.3.11" }, "dependencies": { - "@javelin/ecs": "0.3.1", + "@javelin/ecs": "0.3.2", "pixi.js": "^5.2.3", "webpack-dev-server": "^3.10.3" }, diff --git a/examples/filters/CHANGELOG.md b/examples/filters/CHANGELOG.md index 9e901cd9..76f39867 100644 --- a/examples/filters/CHANGELOG.md +++ b/examples/filters/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/examples/filters/package.json b/examples/filters/package.json index ed785c8f..2d251889 100644 --- a/examples/filters/package.json +++ b/examples/filters/package.json @@ -1,7 +1,7 @@ { "name": "@javelin/example-filters", "private": true, - "version": "0.3.1", + "version": "0.3.2", "main": "index.js", "license": "MIT", "devDependencies": { @@ -12,7 +12,7 @@ "webpack-cli": "^3.3.11" }, "dependencies": { - "@javelin/ecs": "0.3.1", + "@javelin/ecs": "0.3.2", "webpack-dev-server": "^3.10.3" }, "scripts": { diff --git a/examples/networking/CHANGELOG.md b/examples/networking/CHANGELOG.md index c4a333f8..b8152560 100644 --- a/examples/networking/CHANGELOG.md +++ b/examples/networking/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/examples/networking/package.json b/examples/networking/package.json index 3de20ff2..57bd70ca 100644 --- a/examples/networking/package.json +++ b/examples/networking/package.json @@ -1,7 +1,7 @@ { "name": "@javelin/example-networking", "private": true, - "version": "0.3.1", + "version": "0.3.2", "main": "index.js", "license": "MIT", "devDependencies": { @@ -12,9 +12,9 @@ "webpack-cli": "^3.3.11" }, "dependencies": { - "@javelin/ecs": "0.3.1", - "@javelin/hrtime-loop": "0.3.1", - "@javelin/net": "0.3.1", + "@javelin/ecs": "0.3.2", + "@javelin/hrtime-loop": "0.3.2", + "@javelin/net": "0.3.2", "@msgpack/msgpack": "^1.12.1", "@web-udp/client": "^4.0.2", "@web-udp/server": "^4.0.2", diff --git a/lerna.json b/lerna.json index ab51df6e..b4aa3678 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.3.1", + "version": "0.3.2", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 600ddb8a..e20ae554 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 9f4327f1..5a9da1c2 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@javelin/ecs", - "version": "0.3.1", + "version": "0.3.2", "main": "dist/index.js", "license": "MIT", "scripts": { diff --git a/packages/hrtime-loop/CHANGELOG.md b/packages/hrtime-loop/CHANGELOG.md index 5c5ae8db..557b5a15 100644 --- a/packages/hrtime-loop/CHANGELOG.md +++ b/packages/hrtime-loop/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/packages/hrtime-loop/package.json b/packages/hrtime-loop/package.json index fce14333..1f9e6f79 100644 --- a/packages/hrtime-loop/package.json +++ b/packages/hrtime-loop/package.json @@ -1,6 +1,6 @@ { "name": "@javelin/hrtime-loop", - "version": "0.3.1", + "version": "0.3.2", "main": "dist/index.js", "license": "MIT", "scripts": { diff --git a/packages/net/CHANGELOG.md b/packages/net/CHANGELOG.md index c61fb4bb..1cf54dfe 100644 --- a/packages/net/CHANGELOG.md +++ b/packages/net/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 0.3.2 (2020-06-11) + + +### Bug Fixes + +* fix change handler falsy bug ([#44](https://github.com/3mcd/javelin/issues/44)) ([c135489](https://github.com/3mcd/javelin/commit/c1354894b4c091d2f1cb7b92612d9082708f3598)) + + + + + ## 0.3.1 (2020-06-11) diff --git a/packages/net/package.json b/packages/net/package.json index e5b71c03..152796ca 100644 --- a/packages/net/package.json +++ b/packages/net/package.json @@ -1,10 +1,10 @@ { "name": "@javelin/net", - "version": "0.3.1", + "version": "0.3.2", "main": "dist/index.js", "license": "MIT", "devDependencies": { - "@javelin/ecs": "0.3.1" + "@javelin/ecs": "0.3.2" }, "peerDependencies": { "@javelin/ecs": ">=0.0.1"