Skip to content

Commit 4f88227

Browse files
committed
Update to DuckDB v1.1.1
1 parent 90d9180 commit 4f88227

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

DuckDB.NET.Bindings/Bindings.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
<PropertyGroup>
44
<Description>DuckDB Bindings for C#.</Description>
55
<PackageReleaseNotes>
6-
Added support for creating user defined scalar functions.
6+
Added support for creating user-defined scalar functions.
77

88
Added support for Varint type.
99

1010
Added support for writing to Enum columns when using managed Appender.
1111

12-
Updated to DuckDB v1.1.0
12+
Updated to DuckDB v1.1.1
1313
</PackageReleaseNotes>
1414
<RootNamespace>DuckDB.NET.Native</RootNamespace>
1515
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx</RuntimeIdentifiers>
16-
<DuckDbArtifactRoot Condition=" '$(DuckDbArtifactRoot)' == '' ">https://github.com/duckdb/duckdb/releases/download/v1.1.0</DuckDbArtifactRoot>
16+
<DuckDbArtifactRoot Condition=" '$(DuckDbArtifactRoot)' == '' ">https://github.com/duckdb/duckdb/releases/download/v1.1.1</DuckDbArtifactRoot>
1717
<SignAssembly>True</SignAssembly>
1818
<AssemblyOriginatorKeyFile>..\keyPair.snk</AssemblyOriginatorKeyFile>
1919
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -24,7 +24,7 @@ Updated to DuckDB v1.1.0
2424
<Description>$(Description) $(NoNativeText)</Description>
2525
</PropertyGroup>
2626

27-
<!-- Download and include the native libraries into the nuget package-->
27+
<!-- Download and include the native libraries into the NuGet package-->
2828
<Target Name="DownloadNativeLibs" BeforeTargets="GenerateAdditionalSources" Condition="'$(BuildType)' == 'Full' ">
2929
<MSBuild Projects="DownloadNativeLibs.targets" Properties="Rid=win-x64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-windows-amd64.zip" />
3030
<MSBuild Condition="'$(SkipArm)' == ''" Projects="DownloadNativeLibs.targets" Properties="Rid=win-arm64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-windows-arm64.zip" />

DuckDB.NET.Data/Data.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<PropertyGroup>
44
<Description>DuckDB ADO.NET Provider for C#.</Description>
55
<PackageReleaseNotes>
6-
Added support for creating user defined scalar functions.
6+
Added support for creating user-defined scalar functions.
77

88
Added support for Varint type.
99

1010
Added support for writing to Enum columns when using managed Appender.
1111

12-
Updated to DuckDB v1.1.0
12+
Updated to DuckDB v1.1.1
1313
</PackageReleaseNotes>
1414
<SignAssembly>True</SignAssembly>
1515
<AssemblyOriginatorKeyFile>..\keyPair.snk</AssemblyOriginatorKeyFile>

0 commit comments

Comments
 (0)