Skip to content

Commit

Permalink
distribute Akka.Analyzers as transitive dependency through Akka (#7050)
Browse files Browse the repository at this point in the history
* distribute Akka.Analyzers as transitive dependency through Akka

* added v1.5.15 temp notes
  • Loading branch information
Aaronontheweb committed Jan 9, 2024
1 parent 38ad362 commit b6a4a5c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 26 deletions.
2 changes: 2 additions & 0 deletions RELEASE_NOTES.md
@@ -1,3 +1,5 @@
#### 1.5.15 January 9th 2024 ####

#### 1.5.14 September 24th 2023 ####

Akka.NET v1.5.14 is a maintenance release with several bug fixes.
Expand Down
32 changes: 6 additions & 26 deletions src/Directory.Build.props
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Copyright>Copyright © 2013-2023 Akka.NET Team</Copyright>
<Authors>Akka.NET Team</Authors>
<VersionPrefix>1.5.14</VersionPrefix>
<VersionPrefix>1.5.15</VersionPrefix>
<PackageIcon>akkalogo.png</PackageIcon>
<PackageProjectUrl>https://github.com/akkadotnet/akka.net</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/akkadotnet/akka.net/blob/master/LICENSE</PackageLicenseUrl>
Expand Down Expand Up @@ -39,38 +39,18 @@
<MultiNodeAdapterVersion>1.5.13</MultiNodeAdapterVersion>
<MicrosoftLibVersion>[6.0.*,)</MicrosoftLibVersion>
<MsExtVersion>[6.0.*,)</MsExtVersion>
<AkkaAnalyzerVersion>0.2.1</AkkaAnalyzerVersion>
<AkkaPackageTags>akka;actors;actor model;Akka;concurrency</AkkaPackageTags>
</PropertyGroup>
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
<PackageReleaseNotes>Akka.NET v1.5.14 is a maintenance release with several bug fixes.
[Streams: Ensure stream are closed on shutdown](https://github.com/akkadotnet/akka.net/pull/6935)
[Akka: Fix PeriodicTimer HashWheelTimerScheduler deadlock during start](https://github.com/akkadotnet/akka.net/pull/6949)
[Cluster: Old version of LeastShardAllocationStrategy is now deprecated](https://github.com/akkadotnet/akka.net/pull/6975)
[Query: Add a more descriptive ToString() values to Offset types](https://github.com/akkadotnet/akka.net/pull/6978)
Package dependency upgrades
[MNTR: Bump Akka.Multinode.TestAdapter to 1.5.13](https://github.com/akkadotnet/akka.net/pull/6926)
[Akka: Bump Polyfill to 1.28](https://github.com/akkadotnet/akka.net/pull/6936)
[Akka: Bump Google.Protobuf to 3.24.4](https://github.com/akkadotnet/akka.net/pull/6951)
[DData: Bump LightningDB to 0.16.0](https://github.com/akkadotnet/akka.net/pull/6960)
[Persistence: Bump Microsoft.Data.SQLite to 7.0.13](https://github.com/akkadotnet/akka.net/pull/6969)
If you want to see the [full set of changes made in Akka.NET v1.5.14, click here](https://github.com/akkadotnet/akka.net/milestone/96?closed=1).
| COMMITS | LOC+ | LOC- | AUTHOR |
|---------|------|------|---------------------|
| 11 | 25 | 21 | dependabot[bot] |
| 3 | 14 | 2 | Aaron Stannard |
| 3 | 114 | 369 | Simon Cropp |
| 2 | 36 | 31 | Gregorius Soedharmo |
| 1 | 41 | 43 | Lehonti Ramos |
| 1 | 38 | 0 | Yaroslav Paslavskiy |
| 1 | 3 | 0 | Sean Killeen |
| 1 | 227 | 25 | Drew |
| 1 | 1 | 1 | szaliszali |</PackageReleaseNotes>
<PackageReleaseNotes>
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup Label="Analyzers">
<PackageReference Include="Akka.Analyzers" Version="0.2.1" PrivateAssets="all" />
<ItemGroup Label="Analyzers" Condition="'$(MSBuildProjectName)' != 'Akka'">
<PackageReference Include="Akka.Analyzers" Version="$(AkkaAnalyzerVersion)" PrivateAssets="all" />
</ItemGroup>
<!-- SourceLink support for all Akka.NET projects -->
<ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions src/core/Akka/Akka.csproj
Expand Up @@ -20,6 +20,11 @@
<PackageReference Include="System.Collections.Immutable" Version="$(MicrosoftLibVersion)" />
<PackageReference Include="System.Threading.Channels" Version="$(MicrosoftLibVersion)" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="$(ConfigurationManagerVersion)"/>

</ItemGroup>

<ItemGroup Label="PublicAnalyzers">
<PackageReference Include="Akka.Analyzers" Version="$(AkkaAnalyzerVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit b6a4a5c

Please sign in to comment.