Skip to content

Commit

Permalink
upgrade updstream compression
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Oct 14, 2024
1 parent 72b19c2 commit 1aa6c7c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

env:
VERSION: 5.0.1
PACKAGE_SUFFIX: '-pre.1'
# PACKAGE_SUFFIX: ''
# PACKAGE_SUFFIX: '-pre.1'
PACKAGE_SUFFIX: ''
ASM_VERSION: 5.0.0
DOC_INSTANCE: wrs/pq
DOC_ARTIFACT: webHelpPQ2-all.zip
Expand Down
4 changes: 4 additions & 0 deletions docs/release-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ You can deserialise "required" lists and "required" list elements, as raised by
- Better error reporting in case class serializer has mismatched definition and repetition levels (as per #502).
- Pass property attributes down to list data field, by @agaskill in #559.

### Bug fixed

- Compression/decompression would fail on some platforms like x86 or Linux x86 with musl runtime.

### Floor

- `boolean` columns display as checks.
Expand Down
14 changes: 7 additions & 7 deletions src/Parquet.Floor/Parquet.Floor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@

<ItemGroup>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.3" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.4" />

<PackageReference Include="ActiproSoftware.Controls.Avalonia" Version="24.2.0" />
<PackageReference Include="ActiproSoftware.Controls.Avalonia.Themes.DataGrid" Version="24.2.0" />
<PackageReference Include="Avalonia.Desktop" Version="11.1.3" />
<PackageReference Include="Avalonia" Version="11.1.3" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.3" />
<PackageReference Include="Avalonia.Desktop" Version="11.1.4" />
<PackageReference Include="Avalonia" Version="11.1.4" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.4" />
<PackageReference Include="Avalonia.Controls.TreeDataGrid" Version="11.0.10" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.3" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.4" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Config.Net" Version="5.2.0" />
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="Projektanker.Icons.Avalonia" Version="9.4.0" />
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.4.0" />
<PackageReference Include="Projektanker.Icons.Avalonia" Version="9.4.1" />
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.4.1" />
<PackageReference Include="Stowage" Version="2.0.1" />

</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/Parquet/Parquet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="IronCompress" Version="1.6.2" />
<PackageReference Include="IronCompress" Version="1.6.3" />
<PackageReference Include="Microsoft.Data.Analysis" Version="0.21.1" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Nullable" Version="1.3.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>


Expand Down

0 comments on commit 1aa6c7c

Please sign in to comment.