Skip to content

Commit

Permalink
Update versions for August release (#14868)
Browse files Browse the repository at this point in the history
Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com>
  • Loading branch information
pakrym and JoshLove-msft authored Sep 3, 2020
1 parent 3b61432 commit 09b6c38
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion eng/scripts/Prepare-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ $fields = @{
"Library Type"=$libraryType
"Release Type"=$releaseType
"Version Number"=$newVersion
"Notes"="<pre>"+$notes.Replace("`n", "<br>")+"</pre>"
"Notes"=[System.Net.WebUtility]::HtmlEncode($notes).Replace("`n", "<br>")
}

Write-Host
Expand Down
10 changes: 9 additions & 1 deletion sdk/core/Azure.Core.Experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Release History

## 0.1.0-preview.5 (Unreleased)
## 0.1.0-preview.5 (2020-09-03)

### Added
- `JsonPatchDocument` type to represent JSON Path document.
- `BinaryData`: FromString method.
- `BinaryData`: FromBytes method taking ReadOnlySpan.
- `BinaryData`: constructor taking ReadOnlyMemory.

### Breaking Changes
- `BinaryData`: Renamed `Serialize` to `FromObject`.
- `BinaryData`: Renamed `Deserialize` to `ToObject`.
- `BinaryData`: Renamed `FromMemory` to `FromBytes`.

## 0.1.0-preview.4 (2020-08-18)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>Experimental types that might eventually move to Azure.Core</Description>
<AssemblyTitle>Microsoft Azure Client Pipeline Experimental Extensions</AssemblyTitle>
<Version>0.1.0-preview.4</Version>
<Version>0.1.0-preview.5</Version>
<PackageTags>Microsoft Azure Client Pipeline</PackageTags>
<Nullable>enable</Nullable>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.5.0-preview.1 (Unreleased)
## 1.5.0 (2020-09-03)

### Changed
- `ETag` now supports weak ETags and implements an overload for `ToString` that accepts a format string.
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core/src/Azure.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>This is the implementation of the Azure Client Pipeline</Description>
<AssemblyTitle>Microsoft Azure Client Pipeline</AssemblyTitle>
<Version>1.5.0-preview.1</Version>
<Version>1.5.0</Version>
<ApiCompatVersion>1.4.1</ApiCompatVersion>
<PackageTags>Microsoft Azure Client Pipeline</PackageTags>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit 09b6c38

Please sign in to comment.