Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 8ba0b57

Browse files
authored
Release 0.2.1 - Pre-Validation (#912)
1 parent 10da8f1 commit 8ba0b57

File tree

14 files changed

+142
-140
lines changed

14 files changed

+142
-140
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## `0.2.1` - 2019-04-15
6+
57
### Breaking Changes
68

79
- Removed `clientAccess` from the `AddPlayerLifecycleComponents` signature. We now construct the client access attribute within the helper.
@@ -20,13 +22,13 @@
2022
- Added a `WorkerFlagReader` which you can subscribe and `Require`. This allows you to:
2123
- Add callbacks for changes to worker flags.
2224
- Read the value of worker flags.
23-
- Expose `GetWorkerFlag(string name)` on the `View`.
2425

2526
### Changed
2627

2728
- The player lifecycle module now dynamically queries for PlayerCreator entities, and sends requests to a random one each time. This removes the reliance on a hardcoded PlayerCreator Entity ID.
2829
- Removed the `Type` suffix from player lifecycle schema types.
2930
- `RedirectedProcess.RunAsync()` now takes a `CancellationToken?` as a parameter. This token can be used to cancel the underlying process.
31+
- Updated the Unity version to `2018.3.11`
3032

3133
### Fixed
3234

@@ -40,6 +42,7 @@
4042
- Updated default snapshot to have more than one PlayerCreator entity.
4143
- Fixed package dependencies.
4244
- Worker flag changes are propagated to the `ViewDiff`.
45+
- Exposed `GetWorkerFlag(string name)` on the `View`.
4346

4447
## `0.2.0` - 2019-03-18
4548

packer.config.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"package_name": "gdk-for-unity",
3-
"version": "0.2.0",
4-
"git_packages": [
5-
{
6-
"clone_url": "[email protected]:spatialos/gdk-for-unity.git",
7-
"clone_dir" : "gdk-for-unity",
8-
"exclude_paths": [
9-
".git",
10-
".github",
11-
"ci",
12-
"scripts",
13-
"test-project"
14-
]
15-
}
16-
]
17-
}
2+
"package_name": "gdk-for-unity",
3+
"version": "0.2.1",
4+
"git_packages": [
5+
{
6+
"clone_url": "[email protected]:spatialos/gdk-for-unity.git",
7+
"clone_dir": "gdk-for-unity",
8+
"exclude_paths": [
9+
".git",
10+
".github",
11+
"ci",
12+
"scripts",
13+
"test-project"
14+
]
15+
}
16+
]
17+
}
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "com.improbable.gdk.dependencytest",
3-
"displayName": "SpatialOS GDK Dependency Test",
4-
"version": "0.1.3",
5-
"unity": "2018.2",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Dependency Test Root.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3",
10-
"com.improbable.gdk.dependencytestchild": "file:com.improbable.gdk.dependencytestchild"
11-
}
12-
}
2+
"name": "com.improbable.gdk.dependencytest",
3+
"displayName": "SpatialOS GDK Dependency Test",
4+
"version": "0.2.1",
5+
"unity": "2018.2",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Dependency Test Root.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1",
10+
"com.improbable.gdk.dependencytestchild": "0.2.1"
11+
}
12+
}
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "com.improbable.gdk.dependencytestchild",
3-
"displayName": "SpatialOS GDK Dependency Test Child",
4-
"version": "0.1.3",
5-
"unity": "2018.2",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Dependency Test Child.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3",
10-
"com.improbable.gdk.dependencytestgrandchild": "file:com.improbable.gdk.dependencytestgrandchild"
11-
}
12-
}
2+
"name": "com.improbable.gdk.dependencytestchild",
3+
"displayName": "SpatialOS GDK Dependency Test Child",
4+
"version": "0.2.1",
5+
"unity": "2018.2",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Dependency Test Child.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1",
10+
"com.improbable.gdk.dependencytestgrandchild": "0.2.1"
11+
}
12+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "com.improbable.gdk.dependencytestgrandchild",
3-
"displayName": "SpatialOS GDK Dependency Test Grandchild",
4-
"version": "0.1.3",
5-
"unity": "2018.2",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Dependency Test Grandchild.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3"
10-
}
11-
}
2+
"name": "com.improbable.gdk.dependencytestgrandchild",
3+
"displayName": "SpatialOS GDK Dependency Test Grandchild",
4+
"version": "0.2.1",
5+
"unity": "2018.2",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Dependency Test Grandchild.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1"
10+
}
11+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "com.improbable.gdk.buildsystem",
3-
"displayName": "SpatialOS GDK Build System",
4-
"version": "0.2.0",
5-
"unity": "2018.3",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Build System Module. Made by Improbable.",
8-
"dependencies": {
9-
"com.improbable.gdk.core": "0.2.0"
10-
}
11-
}
2+
"name": "com.improbable.gdk.buildsystem",
3+
"displayName": "SpatialOS GDK Build System",
4+
"version": "0.2.1",
5+
"unity": "2018.3",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Build System Module. Made by Improbable.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1"
10+
}
11+
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "com.improbable.gdk.core",
3-
"displayName": "SpatialOS GDK Core",
4-
"version": "0.2.0",
5-
"unity": "2018.3",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Core Module. Made by Improbable.",
8-
"dependencies": {
9-
"com.improbable.gdk.tools": "0.2.0",
10-
"com.improbable.gdk.testutils": "0.2.0",
11-
"com.unity.entities": "0.0.12-preview.21"
12-
}
13-
}
2+
"name": "com.improbable.gdk.core",
3+
"displayName": "SpatialOS GDK Core",
4+
"version": "0.2.1",
5+
"unity": "2018.3",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Core Module. Made by Improbable.",
8+
"dependencies": {
9+
"com.improbable.gdk.tools": "0.2.1",
10+
"com.improbable.gdk.testutils": "0.2.1",
11+
"com.unity.entities": "0.0.12-preview.21"
12+
}
13+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "com.improbable.gdk.gameobjectcreation",
3-
"displayName": "SpatialOS GDK GameObject Creation",
4-
"version": "0.2.0",
5-
"unity": "2018.3",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK GameObject Creation Module. Made by Improbable.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.2.0"
10-
}
11-
}
2+
"name": "com.improbable.gdk.gameobjectcreation",
3+
"displayName": "SpatialOS GDK GameObject Creation",
4+
"version": "0.2.1",
5+
"unity": "2018.3",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK GameObject Creation Module. Made by Improbable.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1"
10+
}
11+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "com.improbable.gdk.mobile",
3-
"displayName": "SpatialOS GDK Mobile Support",
4-
"version": "0.0.4",
5-
"unity": "2018.3",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Mobile Support Module. Made by Improbable.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.2.0"
10-
}
11-
}
2+
"name": "com.improbable.gdk.mobile",
3+
"displayName": "SpatialOS GDK Mobile Support",
4+
"version": "0.0.5",
5+
"unity": "2018.3",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Mobile Support Module. Made by Improbable.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1"
10+
}
11+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "com.improbable.gdk.playerlifecycle",
3-
"displayName": "SpatialOS GDK Player Lifecycle",
4-
"version": "0.2.0",
5-
"unity": "2018.3",
6-
"author": "Improbable Worlds Ltd",
7-
"description": "SpatialOS GDK Player Lifecycle Module. Made by Improbable.",
8-
"dependencies": {
9-
"com.improbable.gdk.core":"0.2.0"
10-
}
11-
}
2+
"name": "com.improbable.gdk.playerlifecycle",
3+
"displayName": "SpatialOS GDK Player Lifecycle",
4+
"version": "0.2.1",
5+
"unity": "2018.3",
6+
"author": "Improbable Worlds Ltd",
7+
"description": "SpatialOS GDK Player Lifecycle Module. Made by Improbable.",
8+
"dependencies": {
9+
"com.improbable.gdk.core": "0.2.1"
10+
}
11+
}

0 commit comments

Comments
 (0)