Skip to content

Commit

Permalink
v1.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
3mcd committed May 16, 2021
1 parent 997f1dd commit a3641f5
Show file tree
Hide file tree
Showing 18 changed files with 134 additions and 28 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### chore

* remove branch config ([997f1dd](https://github.com/3mcd/javelin/commit/997f1dd1b4a82006ed5ce1da8585e69a1bcb07c0))


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))


### BREAKING CHANGES

* API enhancements, new protocol, example





# [0.22.0](https://github.com/3mcd/javelin/compare/v0.21.2...v0.22.0) (2021-04-15)


Expand Down
21 changes: 21 additions & 0 deletions examples/spin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### chore

* remove branch config ([997f1dd](https://github.com/3mcd/javelin/commit/997f1dd1b4a82006ed5ce1da8585e69a1bcb07c0))


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))


### BREAKING CHANGES

* API enhancements, new protocol, example
2 changes: 1 addition & 1 deletion examples/spin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions examples/spin/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@javelin/spin",
"version": "0.0.0",
"version": "1.0.0-alpha.0",
"private": true,
"scripts": {
"start": "vite --config client/vite.config.ts & ts-node server/index.ts",
"start:server": "ts-node server/index.ts"
},
"dependencies": {
"@javelin/ecs": "^0.22.0",
"@javelin/net": "^0.22.0",
"@javelin/pack": "^0.22.0",
"@javelin/ecs": "1.0.0-alpha.0",
"@javelin/net": "1.0.0-alpha.0",
"@javelin/pack": "1.0.0-alpha.0",
"@web-udp/client": "^4.2.1",
"@web-udp/server": "^4.2.1",
"react": "^17.0.0",
Expand Down
18 changes: 14 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"packages": ["packages/*", "examples/*"],
"version": "0.22.0",
"packages": [
"packages/*",
"examples/*"
],
"version": "1.0.0-alpha.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"version": {
"allowBranch": ["master", "next"],
"allowBranch": [
"master",
"next"
],
"conventionalCommits": true,
"exact": true
}
},
"ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md"]
"ignoreChanges": [
"**/__fixtures__/**",
"**/__tests__/**",
"**/*.md"
]
}
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))
2 changes: 1 addition & 1 deletion packages/core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@javelin/core",
"version": "0.22.0",
"version": "1.0.0-alpha.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/javelin-core.bundle.js",
Expand All @@ -20,6 +20,5 @@
"mog",
"multiplayer",
"networking"
],
"dependencies": {}
]
}
11 changes: 11 additions & 0 deletions packages/ecs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))





# [0.22.0](https://github.com/3mcd/javelin/compare/v0.21.2...v0.22.0) (2021-04-15)

**Note:** Version bump only for package @javelin/ecs
Expand Down
2 changes: 1 addition & 1 deletion packages/ecs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/ecs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@javelin/ecs",
"version": "0.22.0",
"version": "1.0.0-alpha.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/javelin-ecs.bundle.js",
Expand All @@ -22,6 +22,6 @@
],
"gitHead": "084d65218a12efbb32ea2b22e0f8e1812acb7d7e",
"dependencies": {
"@javelin/core": "^0.22.0"
"@javelin/core": "1.0.0-alpha.0"
}
}
11 changes: 11 additions & 0 deletions packages/net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))





# [0.22.0](https://github.com/3mcd/javelin/compare/v0.21.2...v0.22.0) (2021-04-15)


Expand Down
12 changes: 6 additions & 6 deletions packages/net/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@javelin/net",
"version": "0.22.0",
"version": "1.0.0-alpha.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/javelin-net.bundle.js",
"license": "MIT",
"devDependencies": {
"@javelin/ecs": "0.22.0",
"@javelin/core": "0.22.0",
"@javelin/track": "0.22.0"
"@javelin/core": "1.0.0-alpha.0",
"@javelin/ecs": "1.0.0-alpha.0",
"@javelin/track": "1.0.0-alpha.0"
},
"peerDependencies": {
"@javelin/ecs": ">=0.0.1",
"@javelin/core": ">=0.0.1"
"@javelin/core": ">=0.0.1",
"@javelin/ecs": ">=0.0.1"
},
"scripts": {
"perf": "yarn build && node perf/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/pack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))





# [0.22.0](https://github.com/3mcd/javelin/compare/v0.21.2...v0.22.0) (2021-04-15)

**Note:** Version bump only for package @javelin/pack
Expand Down
4 changes: 2 additions & 2 deletions packages/pack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@javelin/pack",
"version": "0.22.0",
"version": "1.0.0-alpha.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/javelin-pack.bundle.js",
Expand All @@ -27,6 +27,6 @@
"@msgpack/msgpack": "^2.4.1"
},
"dependencies": {
"@javelin/core": "^0.22.0"
"@javelin/core": "1.0.0-alpha.0"
}
}
11 changes: 11 additions & 0 deletions packages/track/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [1.0.0-alpha.0](https://github.com/3mcd/javelin/compare/v0.22.0...v1.0.0-alpha.0) (2021-05-16)


### Features

* protocol rework + API overhaul ([#164](https://github.com/3mcd/javelin/issues/164)) ([053b1df](https://github.com/3mcd/javelin/commit/053b1dfc5972786b86d06339db8c6751a8dae6f4))





# [0.22.0](https://github.com/3mcd/javelin/compare/v0.21.2...v0.22.0) (2021-04-15)

**Note:** Version bump only for package @javelin/ecs
Expand Down
2 changes: 1 addition & 1 deletion packages/track/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/track/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@javelin/track",
"version": "0.22.0",
"version": "1.0.0-alpha.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/javelin-track.bundle.js",
Expand All @@ -22,7 +22,7 @@
],
"gitHead": "084d65218a12efbb32ea2b22e0f8e1812acb7d7e",
"dependencies": {
"@javelin/core": "^0.22.0",
"@javelin/ecs": "^0.22.0"
"@javelin/core": "1.0.0-alpha.0",
"@javelin/ecs": "1.0.0-alpha.0"
}
}

2 comments on commit a3641f5

@djradon
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congrats Eric!

@3mcd
Copy link
Owner Author

@3mcd 3mcd commented on a3641f5 May 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! Still a ways to go, but finally honing in on 1.0 :)

Please sign in to comment.