Skip to content

Commit 826ced9

Browse files
Upgrading dependencies on capture and core packages (#36)
* Upgrading dependencies on capture and core packages * Update package version to 0.2.0-preview.2
1 parent cbcf425 commit 826ced9

File tree

6 files changed

+22
-26
lines changed

6 files changed

+22
-26
lines changed

TestProjects/PerceptionHDRP/Packages/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"com.unity.perception": "file:../../../com.unity.perception",
99
"com.unity.render-pipelines.core": "7.3.1",
1010
"com.unity.render-pipelines.high-definition": "7.3.1",
11-
"com.unity.simulation.capture": "0.0.10-preview.6",
12-
"com.unity.simulation.core": "0.0.10-preview.8",
11+
"com.unity.simulation.capture": "0.0.10-preview.8",
12+
"com.unity.simulation.core": "0.0.10-preview.14",
1313
"com.unity.test-framework": "1.1.14",
1414
"com.unity.testtools.codecoverage": "0.2.2-preview",
1515
"com.unity.textmeshpro": "2.0.1",

TestProjects/PerceptionHDRP/Packages/packages-lock.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
"com.unity.nuget.newtonsoft-json": "1.1.2",
108108
"com.unity.render-pipelines.core": "7.1.6",
109109
"com.unity.entities": "0.8.0-preview.8",
110-
"com.unity.simulation.capture": "0.0.10-preview.6",
111-
"com.unity.simulation.core": "0.0.10-preview.8"
110+
"com.unity.simulation.capture": "0.0.10-preview.8",
111+
"com.unity.simulation.core": "0.0.10-preview.14"
112112
}
113113
},
114114
"com.unity.platforms": {
@@ -201,16 +201,16 @@
201201
"url": "https://packages.unity.com"
202202
},
203203
"com.unity.simulation.capture": {
204-
"version": "0.0.10-preview.6",
204+
"version": "0.0.10-preview.8",
205205
"depth": 0,
206206
"source": "registry",
207207
"dependencies": {
208-
"com.unity.simulation.core": "0.0.10-preview.8"
208+
"com.unity.simulation.core": "0.0.10-preview.12"
209209
},
210210
"url": "https://packages.unity.com"
211211
},
212212
"com.unity.simulation.core": {
213-
"version": "0.0.10-preview.8",
213+
"version": "0.0.10-preview.14",
214214
"depth": 0,
215215
"source": "registry",
216216
"dependencies": {},

TestProjects/PerceptionURP/Packages/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"com.unity.package-validation-suite": "0.9.1-preview",
77
"com.unity.perception": "file:../../../com.unity.perception",
88
"com.unity.render-pipelines.universal": "7.3.1",
9-
"com.unity.simulation.capture": "0.0.10-preview.6",
10-
"com.unity.simulation.core": "0.0.10-preview.8",
9+
"com.unity.simulation.capture": "0.0.10-preview.8",
10+
"com.unity.simulation.core": "0.0.10-preview.14",
1111
"com.unity.test-framework": "1.1.14",
1212
"com.unity.textmeshpro": "2.0.1",
1313
"com.unity.timeline": "1.2.12",

TestProjects/PerceptionURP/Packages/packages-lock.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
"com.unity.nuget.newtonsoft-json": "1.1.2",
108108
"com.unity.render-pipelines.core": "7.1.6",
109109
"com.unity.entities": "0.8.0-preview.8",
110-
"com.unity.simulation.capture": "0.0.10-preview.6",
111-
"com.unity.simulation.core": "0.0.10-preview.8"
110+
"com.unity.simulation.capture": "0.0.10-preview.8",
111+
"com.unity.simulation.core": "0.0.10-preview.14"
112112
}
113113
},
114114
"com.unity.platforms": {
@@ -190,16 +190,16 @@
190190
"url": "https://packages.unity.com"
191191
},
192192
"com.unity.simulation.capture": {
193-
"version": "0.0.10-preview.6",
193+
"version": "0.0.10-preview.8",
194194
"depth": 0,
195195
"source": "registry",
196196
"dependencies": {
197-
"com.unity.simulation.core": "0.0.10-preview.8"
197+
"com.unity.simulation.core": "0.0.10-preview.12"
198198
},
199199
"url": "https://packages.unity.com"
200200
},
201201
"com.unity.simulation.core": {
202-
"version": "0.0.10-preview.8",
202+
"version": "0.0.10-preview.14",
203203
"depth": 0,
204204
"source": "registry",
205205
"dependencies": {},

com.unity.perception/CHANGELOG.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.0-preview.2] - 2020-07-15
8+
### Fixed
9+
Fixed bug that prevented RGB captures to be written out to disk
10+
Fixed compatibility with [email protected]
11+
712
## [0.2.0-preview.1] - 2020-07-02
813
### Added
914
Added CameraLabeler, an extensible base type for all forms of dataset output from a camera.
@@ -13,14 +18,5 @@ Moved the various forms of ground truth from PerceptionCamera into various subcl
1318
Renamed SimulationManager to DatasetCapture.
1419
Changed Semantic Segmentation to take a SemanticSegmentationLabelConfig, which maps labels to color pixel values.
1520

16-
### Deprecated
17-
18-
### Removed
19-
20-
### Fixed
21-
Fixed bug that prevented RGB captures to be written out to disk
22-
23-
### Security
24-
2521
## [0.1.0] - 2020-06-24
2622
### This is the first release of the _Perception_ package

com.unity.perception/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"com.unity.nuget.newtonsoft-json": "1.1.2",
44
"com.unity.render-pipelines.core": "7.1.6",
55
"com.unity.entities": "0.8.0-preview.8",
6-
"com.unity.simulation.capture": "0.0.10-preview.6",
7-
"com.unity.simulation.core": "0.0.10-preview.8"
6+
"com.unity.simulation.capture": "0.0.10-preview.8",
7+
"com.unity.simulation.core": "0.0.10-preview.14"
88
},
99
"description": "Tools for authoring and executing autonomous vehicle simulations.",
1010
"displayName": "Perception",
1111
"name": "com.unity.perception",
1212
"unity": "2019.3",
13-
"version": "0.2.0-preview.1"
13+
"version": "0.2.0-preview.2"
1414
}

0 commit comments

Comments
 (0)