Skip to content

Commit 252cdba

Browse files
authored
Merge pull request #6 from jonisavo/chore/unity-2021.3.45f1
chore(project): upgrade to Unity 2021.3.45f1, UIComponents 1.0.0-beta.9
2 parents a4bc414 + 771a862 commit 252cdba

File tree

8 files changed

+25
-17
lines changed

8 files changed

+25
-17
lines changed

.github/workflows/ci.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
matrix:
1818
unityVersion:
1919
- 2021.3.3f1
20-
- 2021.3.34f1
21-
- 2022.3.18f1
22-
- 2023.2.7f1
20+
- 2021.3.45f1
21+
- 2022.3.50f1
22+
- 6000.0.23f1
2323
targetPlatform:
2424
- StandaloneLinux64
2525
- StandaloneWindows64
@@ -71,7 +71,10 @@ jobs:
7171
git add -A
7272
git commit -m "chore(ci): switch to different unity version" || echo skipping commit
7373
74+
# Unfortunately, the additional build step causes game-ci's
75+
# Docker containers to run out of disk space on Windows.
7476
- uses: game-ci/unity-builder@v4
77+
if: ${{ matrix.targetPlatform != 'StandaloneWindows64' }}
7578
env:
7679
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
7780
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}

Packages/io.savolainen.unitygit-tests/Core/GitProcessTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public IEnumerator It_Times_Out_After_Given_Milliseconds()
6666
// Ping is used instead, which is pretty hacky.
6767
fileName = "ping";
6868
arguments = "-n 5 127.0.0.1";
69-
expectedLines = 2;
69+
expectedLines = 3;
7070
}
7171
else
7272
{
@@ -80,7 +80,7 @@ public IEnumerator It_Times_Out_After_Given_Milliseconds()
8080
process.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
8181

8282
var gitProcess = new GitProcess(process);
83-
gitProcess.SetTimeout(10);
83+
gitProcess.SetTimeout(100);
8484

8585
var task = gitProcess.Run();
8686

Packages/io.savolainen.unitygit-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"url": "https://savolainen.io"
1111
},
1212
"dependencies": {
13-
"io.savolainen.uicomponents": "1.0.0-beta.3"
13+
"io.savolainen.uicomponents": "1.0.0-beta.9"
1414
}
1515
}

Packages/io.savolainen.unitygit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://savolainen.io"
1111
},
1212
"dependencies": {
13-
"io.savolainen.uicomponents": "1.0.0-beta.3",
13+
"io.savolainen.uicomponents": "1.0.0-beta.9",
1414
"com.marijnzwemmer.unity-toolbar-extender": "1.4.2"
1515
}
1616
}

Packages/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"dependencies": {
33
"com.marijnzwemmer.unity-toolbar-extender": "1.4.2",
4-
"com.unity.ide.rider": "3.0.27",
4+
"com.unity.ide.rider": "3.0.31",
55
"com.unity.ide.visualstudio": "2.0.22",
66
"com.unity.ide.vscode": "1.2.5",
77
"com.unity.test-framework": "1.1.33",
8-
"com.unity.testtools.codecoverage": "1.2.5",
8+
"com.unity.testtools.codecoverage": "1.2.6",
99
"com.unity.textmeshpro": "3.0.7",
1010
"com.unity.ugui": "1.0.0",
11-
"io.savolainen.uicomponents": "1.0.0-beta.8",
11+
"io.savolainen.uicomponents": "1.0.0-beta.9",
1212
"com.unity.modules.ai": "1.0.0",
1313
"com.unity.modules.androidjni": "1.0.0",
1414
"com.unity.modules.animation": "1.0.0",

Packages/packages-lock.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"url": "https://packages.unity.com"
1616
},
1717
"com.unity.ide.rider": {
18-
"version": "3.0.27",
18+
"version": "3.0.31",
1919
"depth": 0,
2020
"source": "registry",
2121
"dependencies": {
@@ -58,7 +58,7 @@
5858
"url": "https://packages.unity.com"
5959
},
6060
"com.unity.testtools.codecoverage": {
61-
"version": "1.2.5",
61+
"version": "1.2.6",
6262
"depth": 0,
6363
"source": "registry",
6464
"dependencies": {
@@ -92,7 +92,7 @@
9292
"dependencies": {}
9393
},
9494
"io.savolainen.uicomponents": {
95-
"version": "1.0.0-beta.8",
95+
"version": "1.0.0-beta.9",
9696
"depth": 0,
9797
"source": "registry",
9898
"dependencies": {},
@@ -103,7 +103,7 @@
103103
"depth": 0,
104104
"source": "embedded",
105105
"dependencies": {
106-
"io.savolainen.uicomponents": "1.0.0-beta.3",
106+
"io.savolainen.uicomponents": "1.0.0-beta.9",
107107
"com.marijnzwemmer.unity-toolbar-extender": "1.4.2"
108108
}
109109
},
@@ -112,7 +112,7 @@
112112
"depth": 0,
113113
"source": "embedded",
114114
"dependencies": {
115-
"io.savolainen.uicomponents": "1.0.0-beta.3"
115+
"io.savolainen.uicomponents": "1.0.0-beta.9"
116116
}
117117
},
118118
"com.unity.modules.ai": {

ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
"type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
2323
"key": "EnableCodeCoverage",
2424
"value": "{\"m_Value\":true}"
25+
},
26+
{
27+
"type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
28+
"key": "OpenReportWhenGenerated",
29+
"value": "{\"m_Value\":false}"
2530
}
2631
]
2732
}

ProjectSettings/ProjectVersion.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2021.3.34f1
2-
m_EditorVersionWithRevision: 2021.3.34f1 (25266724e7bd)
1+
m_EditorVersion: 2021.3.45f1
2+
m_EditorVersionWithRevision: 2021.3.45f1 (0da89fac8e79)

0 commit comments

Comments
 (0)