From 2e5ef1e3d20592292af7e865735796907e513d84 Mon Sep 17 00:00:00 2001 From: IG Date: Tue, 11 Oct 2022 16:16:48 +0100 Subject: [PATCH] remove .NET 5 (reached end of life). Leave .netstandard 2.0, net 3.1 and 6.0. --- .github/workflows/release.yml | 2 +- docs/README.md | 2 +- src/Parquet.Test/Parquet.Test.csproj | 2 +- src/Parquet/3rdparty/Thrift/Collections/THashSet.cs | 4 +--- src/Parquet/Parquet.csproj | 2 +- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index befd6189..3a28f782 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: env: - VERSION: 4.0.0 + VERSION: 4.0.1 ASM_VERSION: 4.0.0 jobs: diff --git a/docs/README.md b/docs/README.md index 59af4b58..6a40cd65 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,7 +7,7 @@ -**Fully portable, managed** .NET library to read and write [Apache Parquet](https://parquet.apache.org/) files. Supports `.NET 6.0`, `.NET 5.0`, and `.NET Standard 2.0`. +**Fully portable, managed** .NET library to read and write [Apache Parquet](https://parquet.apache.org/) files. Supports `.NET 6.0`, `.NET Core 3.1`, and `.NET Standard 2.0`. Runs everywhere .NET runs Linux, MacOS, Windows, iOS, Android, Tizen, Xbox, PS4, Raspberry Pi, Samsung TVs and much more. diff --git a/src/Parquet.Test/Parquet.Test.csproj b/src/Parquet.Test/Parquet.Test.csproj index 38d5a5d1..51a88ac7 100644 --- a/src/Parquet.Test/Parquet.Test.csproj +++ b/src/Parquet.Test/Parquet.Test.csproj @@ -2,7 +2,7 @@ - net6.0 + netcoreapp3.1;net6.0 false latest diff --git a/src/Parquet/3rdparty/Thrift/Collections/THashSet.cs b/src/Parquet/3rdparty/Thrift/Collections/THashSet.cs index a879ec99..7359dbd9 100644 --- a/src/Parquet/3rdparty/Thrift/Collections/THashSet.cs +++ b/src/Parquet/3rdparty/Thrift/Collections/THashSet.cs @@ -36,10 +36,8 @@ public THashSet() public THashSet(int capacity) #if NET5_0_OR_GREATER : base(capacity) -#elif NETFRAMEWORK || NETSTANDARD - : base(/*capacity not supported*/) #else -#error Unknown platform + : base(/*capacity not supported*/) #endif { } diff --git a/src/Parquet/Parquet.csproj b/src/Parquet/Parquet.csproj index 075c02d3..65a43470 100644 --- a/src/Parquet/Parquet.csproj +++ b/src/Parquet/Parquet.csproj @@ -1,7 +1,7 @@  - netstandard2.0;net5.0;net6.0 + netstandard2.0;netcoreapp3.1;net6.0 Pure managed .NET library to read and write Apache Parquet files, targeting .NET Standand 2.0 and up.