Skip to content

Commit

Permalink
Remove multitargeting, fixes #48. Bump version of package. Introduce …
Browse files Browse the repository at this point in the history
…changelog reference to nuget package
  • Loading branch information
pepelev committed Jun 14, 2021
1 parent a8718dd commit f6a8ea6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
9 changes: 8 additions & 1 deletion src/PullStream.Csv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
Nothing to write yet

## [2.0.0] - 2021-06-15
### Changed
- Now NuGet package targets only netstandard2.0 (there used to be netstandard2.0 and netstandard2.1) [#48](https://github.com/pepelev/PullStream/issues/48)
- Use ChunkOutput from PullStream package instead of custom CsvRow [#31](https://github.com/pepelev/PullStream/issues/31)
- Now NuGet package references PullStream package of minimal verision 1.2.1 (there used to be 1.2.0)

## [1.0.1] - 2021-06-14
### Fixed
- Validate all arguments of public methods [#30](https://github.com/pepelev/PullStream/issues/30)
Expand All @@ -19,7 +25,8 @@ Nothing to write yet
### Added
- Csv stream [#8](https://github.com/pepelev/PullStream/issues/8)

[Unreleased]: https://github.com/pepelev/pullstream/compare/csv-v1.0.1...pullstream-csv
[Unreleased]: https://github.com/pepelev/pullstream/compare/csv-v2.0.0...pullstream-csv
[2.0.0]: https://github.com/pepelev/pullstream/compare/csv-v1.0.1...csv-v2.0.0
[1.0.1]: https://github.com/pepelev/pullstream/compare/csv-v1.0.0...csv-v1.0.1
[1.0.0]: https://github.com/pepelev/pullstream/compare/csv-v0.1.0...csv-v1.0.0
[0.1.0]: https://github.com/pepelev/pullstream/releases/tag/pullstream-json-v0.1.0
15 changes: 9 additions & 6 deletions src/PullStream.Csv/PullStream.Csv.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="[13.0.0,28.0.0)" />
<PackageReference Include="PullStream" Version="[1.2.0,2.0.0)" />
<PackageReference Include="PullStream" Version="[1.2.1,2.0.0)" />
</ItemGroup>

<ItemGroup>
Expand All @@ -35,9 +35,12 @@
<PropertyGroup>
<PackageId>PullStream.Csv</PackageId>
<Title>PullStream.Csv</Title>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<Version>1.0.1</Version>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<Version>2.0.0</Version>
<PackageReleaseNotes>
https://github.com/pepelev/PullStream/blob/main/CHANGELOG.md#200---2021-06-15
</PackageReleaseNotes>
<Authors>Alexey Pepelev</Authors>
<Product>PullStream.Csv</Product>
<Description>PullStream.Csv allows to create lazy System.IO.Stream that contains csv representation of sequence of elements</Description>
Expand Down

0 comments on commit f6a8ea6

Please sign in to comment.