Skip to content

Commit

Permalink
Release 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Jan 18, 2022
1 parent 65552b2 commit b06845d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ The `Unreleased` section name is replaced by the expected version of next releas

### Added
### Changed
### Removed
### Fixed

<a name="3.0.5"></a>
## [3.0.6] - 2022-01-19

### Changed

- `CosmosStore`: Cleanup `Microsoft.Azure.Cosmos` calls [#303](https://github.com/jet/equinox/pull/303)

### Removed

- Removed Grafana spec now that canonical is in `dotnet-templates` [#304](https://github.com/jet/equinox/pull/304)
Expand Down Expand Up @@ -646,7 +656,8 @@ The `Unreleased` section name is replaced by the expected version of next releas

(For information pertaining to earlier releases, see release notes in https://github.com/jet/equinox/releases and/or can someone please add it!)

[Unreleased]: https://github.com/jet/equinox/compare/3.0.5...HEAD
[Unreleased]: https://github.com/jet/equinox/compare/3.0.6...HEAD
[3.0.6]: https://github.com/jet/equinox/compare/3.0.5...3.0.6
[3.0.5]: https://github.com/jet/equinox/compare/3.0.4...3.0.5
[3.0.4]: https://github.com/jet/equinox/compare/3.0.3...3.0.4
[3.0.3]: https://github.com/jet/equinox/compare/3.0.2...3.0.3
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageProjectUrl>https://github.com/jet/equinox</PackageProjectUrl>
<PackageTags>fsharp unionencoder eventsourcing eventstore cosmosdb sqlserver postgres fscodec typeshape</PackageTags>
<PackageLicense>Apache-2.0</PackageLicense>
<Copyright>Copyright © 2016-21</Copyright>
<Copyright>Copyright © 2016-22</Copyright>

<!-- Confluent don't support Mono OOTB https://github.com/confluentinc/confluent-kafka-dotnet/issues/400 -->
<TestTargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netcoreapp3.1;net461</TestTargetFrameworks>
Expand All @@ -27,4 +27,4 @@
<ItemGroup> <!-- net461 ref assemblies https://stackoverflow.com/a/57384175/11635 -->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions src/Equinox.Core/Equinox.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="All" />

<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' != 'netstandard2.0' " />
<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net461' " />
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
<PackageReference Include="System.Runtime.Caching" Version="4.5.0" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
<Reference Include="System.Runtime.Caching" Condition=" '$(TargetFramework)' != 'netstandard2.0' " />
</ItemGroup>

</Project>
</Project>
4 changes: 2 additions & 2 deletions src/Equinox.CosmosStore/Equinox.CosmosStore.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="All" />

<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.1' " />
<PackageReference Include="FSharp.Core" Version="4.3.4" />

<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.0.0" />
<PackageReference Include="FSharp.Control.AsyncSeq" Version="2.0.23" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.17.0" />
<PackageReference Include="System.Runtime.Caching" Version="4.5.0" />
</ItemGroup>

</Project>
</Project>
4 changes: 2 additions & 2 deletions src/Equinox.EventStore/Equinox.EventStore.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="All" />

<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' != 'netstandard2.0' " />
<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net461' " />
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />

<PackageReference Include="EventStore.Client" Version="20.6.0" />
<PackageReference Include="FsCodec" Version="2.0.0" />
<PackageReference Include="FSharp.Control.AsyncSeq" Version="2.0.23" />
</ItemGroup>

</Project>
</Project>

0 comments on commit b06845d

Please sign in to comment.