Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 7.15.0 #2629

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Microsoft.OData.Json.IJsonWriter.WriteValue(System.Text.Json.JsonElement value) -> void
Microsoft.OData.Json.IJsonWriterAsync.WriteValueAsync(System.Text.Json.JsonElement value) -> System.Threading.Tasks.Task
Microsoft.OData.ODataJsonElementValue
Microsoft.OData.ODataJsonElementValue.ODataJsonElementValue(System.Text.Json.JsonElement value) -> void
Microsoft.OData.ODataJsonElementValue.Value.get -> System.Text.Json.JsonElement
override Microsoft.OData.ODataEnumValue.ToString() -> string
override Microsoft.OData.ODataPrimitiveValue.ToString() -> string
abstract Microsoft.OData.ODataBatchReader.CreateOperationRequestMessageImplementation() -> Microsoft.OData.ODataBatchOperationRequestMessage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
Microsoft.OData.Json.IJsonWriter.WriteValue(System.Text.Json.JsonElement value) -> void
Microsoft.OData.Json.IJsonWriterAsync.WriteValueAsync(System.Text.Json.JsonElement value) -> System.Threading.Tasks.Task
Microsoft.OData.ODataJsonElementValue
Microsoft.OData.ODataJsonElementValue.ODataJsonElementValue(System.Text.Json.JsonElement value) -> void
Microsoft.OData.ODataJsonElementValue.Value.get -> System.Text.Json.JsonElement
4 changes: 2 additions & 2 deletions tools/CustomMSBuild/Versioning.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- Set the version number: major, minor, build and release (i.e. alpha, beta or blank for RTM)-->
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">7</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">14</VersionMinor>
<VersionBuildNumber Condition="'$(VersionBuildNumber)' == ''">1</VersionBuildNumber>
<VersionMinor Condition="'$(VersionMinor)' == ''">15</VersionMinor>
<VersionBuildNumber Condition="'$(VersionBuildNumber)' == ''">0</VersionBuildNumber>
<VersionRelease Condition="'$(VersionRelease)' == ''"></VersionRelease>
</PropertyGroup>

Expand Down