Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
azyobuzin committed May 2, 2020
1 parent 126be3c commit db4a4f3
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/BiDaFlow.AsyncEnumerable/BiDaFlow.AsyncEnumerable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<RootNamespace>BiDaFlow</RootNamespace>
<PackageTags>Parallel;Dataflow</PackageTags>
<Description>Integration with TPL Dataflow and AsyncEnumerable</Description>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
Expand All @@ -17,4 +19,10 @@
<ProjectReference Include="..\BiDaFlow\BiDaFlow.csproj" />
</ItemGroup>

<Target Name="SetDependencyVersion" AfterTargets="_GetProjectReferenceVersions">
<ItemGroup>
<_ProjectReferencesWithVersions Update="..\BiDaFlow\BiDaFlow.csproj" ProjectVersion="[0.1,0.2)" />
</ItemGroup>
</Target>

</Project>
14 changes: 14 additions & 0 deletions src/BiDaFlow.AsyncEnumerable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.1.0] - 2020-05-03
### Added
- Functions that convert between `ISourceBlock` and `IAsyncEnumerable`
- `RunThroughDataflowBlock` method to a dataflow block into `IAsyncEnumerable` method chain

[0.1.0]: https://github.com/azyobuzin/BiDaFlow/releases/tag/asyncenum-v0.1.0
2 changes: 2 additions & 0 deletions src/BiDaFlow/BiDaFlow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
<PackageTags>Parallel;Dataflow</PackageTags>
<Description>Constructs and manipulates TPL Dataflow blocks fluently.</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions src/BiDaFlow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.1.0] - 2020-05-03
### Added
- `FluentDataflow` class that provides functions to construct and manipulate dataflow blocks
- `TransformWithoutBufferBlock`

[0.1.0]: https://github.com/azyobuzin/BiDaFlow/releases/tag/core-v0.1.0
1 change: 1 addition & 0 deletions src/BiDaFlow/Internal/InternalsVisibleTo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

[assembly: InternalsVisibleTo("BiDaFlow.Actors")]
[assembly: InternalsVisibleTo("BiDaFlow.AsyncEnumerable")]
[assembly: InternalsVisibleTo("BiDaFlow.ReactiveStreams")]
16 changes: 14 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
<Project>

<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<Version>0.1.0</Version>
<VersionPrefix>0.1.0</VersionPrefix>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>azyobuzin</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/azyobuzin/BiDaFlow</PackageProjectUrl>
</PropertyGroup>

<Import Project="..\Directory.Build.props" />
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>

</Project>

0 comments on commit db4a4f3

Please sign in to comment.