Skip to content

Commit 30e5dda

Browse files
author
Michael Beer
committed
Prepare release 1.2.3
1 parent 88456d6 commit 30e5dda

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

npgsql

src/Installer/GacInstaller.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</Target>
5151
<Target Name="CreateWixProperties" BeforeTargets="Compile">
5252
<!-- Get the programs assembly version from the .exe file -->
53-
<GetAssemblyIdentity AssemblyFiles="..\..\npgsql\src\Npgsql\bin\$(Configuration)\net452\Npgsql.dll">
53+
<GetAssemblyIdentity AssemblyFiles="..\..\npgsql\src\Npgsql\bin\$(Configuration)\net451\Npgsql.dll">
5454
<Output TaskParameter="Assemblies" ItemName="AsmInfo" />
5555
</GetAssemblyIdentity>
5656
<CreateProperty Value="%(AsmInfo.Version)">
@@ -69,7 +69,7 @@
6969
<Output TaskParameter="Value" PropertyName="DefineConstants" />
7070
</CreateProperty>
7171
<!-- Get the CrateDb PlugIn assembly version from the .dll file -->
72-
<GetAssemblyIdentity AssemblyFiles="..\Npgsql.CrateDb\bin\$(Configuration)\net452\Npgsql.CrateDb.dll">
72+
<GetAssemblyIdentity AssemblyFiles="..\Npgsql.CrateDb\bin\$(Configuration)\net451\Npgsql.CrateDb.dll">
7373
<Output TaskParameter="Assemblies" ItemName="PlugInAsmInfo" />
7474
</GetAssemblyIdentity>
7575
<CreateProperty Value="%(PlugInAsmInfo.Version)">

src/Installer/Product.wxs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,28 +110,28 @@
110110
<Component Id="Npgsql" Guid="f842fa5e-5623-41aa-80aa-6d2e5bf97435">
111111
<File Id="Npgsql"
112112
Name="Npgsql.dll"
113-
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net452\Npgsql.dll"
113+
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net451\Npgsql.dll"
114114
KeyPath="yes"
115115
Assembly=".net" />
116116
</Component>
117117
<Component Id="System.Threading.Tasks.Extensions" Guid="d978c06f-7e7f-4865-858e-b9eee77d7470">
118118
<File Id="System.Threading.Tasks.Extensions"
119119
Name="System.Threading.Tasks.Extensions.dll"
120-
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net452\System.Threading.Tasks.Extensions.dll"
120+
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net451\System.Threading.Tasks.Extensions.dll"
121121
KeyPath="yes"
122122
Assembly=".net" />
123123
</Component>
124124
<Component Id="System.ValueTuple" Guid="07cfe929-4a0c-4b90-87df-37cceaa970b8">
125125
<File Id="System.ValueTuple"
126126
Name="System.ValueTuple.dll"
127-
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net452\System.ValueTuple.dll"
127+
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net451\System.ValueTuple.dll"
128128
KeyPath="yes"
129129
Assembly=".net" />
130130
</Component>
131131
<Component Id="System.Runtime.CompilerServices.Unsafe" Guid="36194b8d-d2af-4dd6-a9a0-fb6942502e53">
132132
<File Id="System.Runtime.CompilerServices.Unsafe"
133133
Name="System.Runtime.CompilerServices.Unsafe.dll"
134-
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net452\System.Runtime.CompilerServices.Unsafe.dll"
134+
Source="..\..\npgsql\src\npgsql\bin\$(var.Configuration)\net451\System.Runtime.CompilerServices.Unsafe.dll"
135135
KeyPath="yes"
136136
Assembly=".net" />
137137
</Component>
@@ -141,7 +141,7 @@
141141
<Component Id="Npgsql.CrateDb" Guid="55ED357D-8B7F-49FE-8AF3-F63D93D15577">
142142
<File Id="Npgsql.CrateDb"
143143
Name="Npgsql.CrateDb.dll"
144-
Source="..\Npgsql.CrateDb\bin\$(var.Configuration)\net452\Npgsql.CrateDb.dll"
144+
Source="..\Npgsql.CrateDb\bin\$(var.Configuration)\net451\Npgsql.CrateDb.dll"
145145
KeyPath="yes"
146146
Assembly=".net" />
147147
</Component>

src/Npgsql.CrateDb/CrateDbObjectHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected override async ValueTask<T> Read<T>(NpgsqlReadBuffer buf, int len, boo
6565
/// <remarks>
6666
/// The CrateObjectHandler requires a special array handler that returns arrays of arbitrary clr types.
6767
/// </remarks>
68-
public override ArrayHandler CreateArrayHandler(PostgresType arrayBackendType) =>
68+
protected override ArrayHandler CreateArrayHandler(PostgresType arrayBackendType) =>
6969
new CrateDbObjectArrayHandler(this);
7070
}
7171
}

src/Npgsql.CrateDb/Npgsql.CrateDb.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>1.1.0</VersionPrefix>
4+
<VersionPrefix>1.2.3</VersionPrefix>
55
<Description>A plugin that extends Npgsql to enable using npgsql as a .NET data provider for CrateDB.</Description>
66
<Authors>Andreas Pircher;Michael Beer</Authors>
77
<Copyright>Copyright 2018 © Crate.io</Copyright>
88
<Company>Crate.io</Company>
99
<PackageTags>npgsql crate cratedb ado ado.net database sql</PackageTags>
10-
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
10+
<TargetFrameworks>net45;net451;netstandard2.0</TargetFrameworks>
1111
<WarningsAsErrors>true</WarningsAsErrors>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1313
<PackageProjectUrl>https://github.com/crate/crate-npgsql</PackageProjectUrl>
@@ -17,7 +17,7 @@
1717
<SignAssembly>true</SignAssembly>
1818
<DelaySign>false</DelaySign>
1919
<AssemblyOriginatorKeyFile>Npgsql.CrateDb.snk</AssemblyOriginatorKeyFile>
20-
<Version>1.2.1</Version>
20+
<Version>1.2.3.0</Version>
2121
<PackageIconUrl>https://crate.io/wp-content/uploads/2017/11/favicon.png</PackageIconUrl>
2222
</PropertyGroup>
2323

test/Npgsql.CrateDbTests/Npgsql.CrateDbTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net452;netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>net45;net451;netcoreapp2.0</TargetFrameworks>
55
<DebugType>portable</DebugType>
66
<DebugType Condition="'$(TargetFramework)' != '' AND '$(TargetFramework)' != 'netcoreapp1.0'">Full</DebugType>
77
</PropertyGroup>

0 commit comments

Comments
 (0)