Skip to content

Commit 326f89f

Browse files
Merge pull request #143 from akkadotnet/dev
v0.9.11 Release
2 parents d9a9319 + cb7c6d0 commit 326f89f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
### 0.9.10 October 15 2019 ####
1+
### 0.9.11 November 13 2019 ####
22

3-
Hyperion now [supports cross-framework communication between .NET Core and .NET Framework](https://github.com/akkadotnet/Hyperion/pull/116).
3+
[Hyperion now targets .NET 4.5 again so it can be included inside Akka.NET v1.3.* releases](https://github.com/akkadotnet/Hyperion/pull/141).

src/Hyperion.Benchmarks/Hyperion.Benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="BenchmarkDotNet" Version="0.11.5" />
10+
<PackageReference Include="BenchmarkDotNet" Version="0.12.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Hyperion/Hyperion.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55
<AssemblyTitle>Hyperion</AssemblyTitle>
66
<Description>Hyperion, fast binary POCO serializer</Description>
7-
<TargetFrameworks>netstandard1.6;netstandard2.0;net452</TargetFrameworks>
7+
<TargetFrameworks>netstandard1.6;netstandard2.0;net45</TargetFrameworks>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<PackageTags>serialization;poco</PackageTags>
1010
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
2020
</ItemGroup>
2121

22-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
22+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
2323
<Reference Include="System" />
2424
<Reference Include="Microsoft.CSharp" />
2525
</ItemGroup>
@@ -33,7 +33,7 @@
3333
<DefineConstants>$(DefineConstants);NETSTANDARD20</DefineConstants>
3434
</PropertyGroup>
3535

36-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' ">
36+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
3737
<DefineConstants>$(DefineConstants);SERIALIZATION;UNSAFE;NET45</DefineConstants>
3838
</PropertyGroup>
3939

src/common.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2016-2017 Akka.NET Team</Copyright>
44
<Authors>Akka.NET Team</Authors>
5-
<VersionPrefix>0.9.10</VersionPrefix>
6-
<PackageReleaseNotes>Hyperion now [supports cross-framework communication between .NET Core and .NET Framework](https://github.com/akkadotnet/Hyperion/pull/116).</PackageReleaseNotes>
5+
<VersionPrefix>0.9.11</VersionPrefix>
6+
<PackageReleaseNotes>[Hyperion now targets .NET 4.5 again so it can be included inside Akka.NET v1.3.* releases](https://github.com/akkadotnet/Hyperion/pull/141).</PackageReleaseNotes>
77
<PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
88
<PackageProjectUrl>https://github.com/akkadotnet/Hyperion</PackageProjectUrl>
99
<PackageLicenseUrl>https://github.com/akkadotnet/Hyperion/blob/master/LICENSE</PackageLicenseUrl>
1010
<NoWarn>$(NoWarn);CS1591</NoWarn>
1111
</PropertyGroup>
1212
<PropertyGroup>
1313
<XunitVersion>2.4.1</XunitVersion>
14-
<TestSdkVersion>16.3.0</TestSdkVersion>
14+
<TestSdkVersion>16.4.0</TestSdkVersion>
1515
<NBenchVersion>1.2.2</NBenchVersion>
1616
</PropertyGroup>
1717
</Project>

0 commit comments

Comments
 (0)