Skip to content

Commit f8bd774

Browse files
Add release notes
1 parent 72da466 commit f8bd774

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1616
<PackageId>Microsoft.OpenApi.OData</PackageId>
1717
<SignAssembly>true</SignAssembly>
18-
<Version>1.6.3</Version>
18+
<Version>1.6.4</Version>
1919
<Description>This package contains the codes you need to convert OData CSDL to Open API Document of Model.</Description>
2020
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
2121
<PackageTags>Microsoft OpenApi OData EDM</PackageTags>
2222
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET.OData</RepositoryUrl>
2323
<PackageReleaseNotes>
24-
- Add delete operations to media entities #522
24+
- Add support for Edm.Untyped #511
2525
</PackageReleaseNotes>
2626
<AssemblyName>Microsoft.OpenApi.OData.Reader</AssemblyName>
2727
<AssemblyOriginatorKeyFile>..\..\tool\Microsoft.OpenApi.OData.snk</AssemblyOriginatorKeyFile>

test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30590,10 +30590,10 @@
3059030590
"type": "string"
3059130591
}
3059230592
},
30593-
"TripData": {},
30593+
"TripData": { },
3059430594
"DestinationInfo": {
3059530595
"type": "array",
30596-
"items": {}
30596+
"items": { }
3059730597
},
3059830598
"StartsAt": {
3059930599
"format": "date-time",

test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34196,10 +34196,10 @@
3419634196
"nullable": true
3419734197
}
3419834198
},
34199-
"TripData": {},
34199+
"TripData": { },
3420034200
"DestinationInfo": {
3420134201
"type": "array",
34202-
"items": {}
34202+
"items": { }
3420334203
},
3420434204
"StartsAt": {
3420534205
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
@@ -35302,7 +35302,7 @@
3530235302
"Budget": 0,
3530335303
"Description": "String",
3530435304
"DestinationInfo": [
35305-
{}
35305+
{ }
3530635306
],
3530735307
"EndsAt": "0001-01-01T00:00:00.0000000+00:00",
3530835308
"Name": "String",
@@ -35316,7 +35316,7 @@
3531635316
"Tags": [
3531735317
"String"
3531835318
],
35319-
"TripData": {},
35319+
"TripData": { },
3532035320
"TripId": 0
3532135321
}
3532235322
},

test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23041,10 +23041,10 @@ components:
2304123041
items:
2304223042
type: string
2304323043
nullable: true
23044-
TripData: {}
23044+
TripData: { }
2304523045
DestinationInfo:
2304623046
type: array
23047-
items: {}
23047+
items: { }
2304823048
StartsAt:
2304923049
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
2305023050
type: string

0 commit comments

Comments
 (0)