Skip to content

Commit 2a4903b

Browse files
chore: v2.3.0 release update (#869)
* project settings & changelog updated * utilities package dependencies updated as well, version bump
1 parent 082255f commit 2a4903b

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com).
88

9-
## [Unreleased] - yyyy-mm-dd
9+
## [2.3.0] - 2023-09-07
1010

1111
### Changed
1212
* Upgraded editor version to 2022.3.7f1 (#855)

Packages/com.unity.multiplayer.samples.coop/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Multiplayer Samples Co-op Changelog
22

3-
## [Unreleased] - yyyy-mm-dd
3+
## [1.7.0] - 2023-09-07
4+
5+
### Changed
6+
* Updating package dependencies (#869)
7+
* Tutorial Framework upgraded to v3.1.3
8+
* Netcode for GameObjects upgraded to v1.6.0
9+
* Unity Relay upgraded to v1.0.5
410

511
### Changed
612
* Replaced usages of null-coalescing and null-conditional operators with regular null checks. (#867) These operators can cause issues when used with types inheriting UnityEngine.Object because that type redefines the == operator to define when an object is null. This redefinition applies to regular null checks (if foo == null) but not to those operators, thus this could lead to unexpected behaviour. While those operators were safely used within Boss Room, only with types that were not inheriting UnityEngine.Object, we decided to remove most usages for consistency. This will also help avoid accidental mistakes, such as a user reusing a part of this code, but modifying it so that one of those operators are used with a UnityEngine.Object.

Packages/com.unity.multiplayer.samples.coop/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"unity": "2020.3",
88
"description": "Utilities package built on top of Netcode for GameObjects, providing useful scripts and tools.",
99
"dependencies": {
10-
"com.unity.learn.iet-framework": "1.2.1",
10+
"com.unity.learn.iet-framework": "3.1.3",
1111
"com.unity.multiplayer.tools": "1.1.0",
12-
"com.unity.netcode.gameobjects": "1.4.0",
13-
"com.unity.services.relay": "1.0.3"
12+
"com.unity.netcode.gameobjects": "1.6.0",
13+
"com.unity.services.relay": "1.0.5"
1414
}
1515
}

Packages/packages-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@
121121
"depth": 0,
122122
"source": "embedded",
123123
"dependencies": {
124-
"com.unity.learn.iet-framework": "1.2.1",
124+
"com.unity.learn.iet-framework": "3.1.3",
125125
"com.unity.multiplayer.tools": "1.1.0",
126-
"com.unity.netcode.gameobjects": "1.4.0",
127-
"com.unity.services.relay": "1.0.3"
126+
"com.unity.netcode.gameobjects": "1.6.0",
127+
"com.unity.services.relay": "1.0.5"
128128
}
129129
},
130130
"com.unity.multiplayer.tools": {

ProjectSettings/ProjectSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:c3cabe86404e4b93444944c7a3fd899524121a1061d652bbf5ff2f41b81a4d32
2+
oid sha256:64b4451c53ca78def1a82ed366a92399fce17e936d3c4e4e370f3f5b57d3f9ad
33
size 26959

0 commit comments

Comments
 (0)