Skip to content

Commit c1c8477

Browse files
committed
Bump version to 3.2.3
1 parent 98ba03a commit c1c8477

5 files changed

Lines changed: 4 additions & 6 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
image: Visual Studio 2017
2-
version: 3.2.2-{build}
2+
version: 3.2.3-{build}
33
environment:
44
global:
55
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true

bump.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ sed -i 's/<VersionPrefix>[^<]*<\/VersionPrefix>/<VersionPrefix>'$v'<\/VersionPre
1616
sed -i 's/\(<Identity .*Version=\)"[^"]*"/\1"'$v'"/' src/VSIX/source.extension.vsixmanifest
1717
sed -i 's/.*ProvideBindingRedirection.*/[assembly: ProvideBindingRedirection(AssemblyName = "Npgsql", NewVersion = "'$v'.0", OldVersionLowerBound = "0.0.0.0", OldVersionUpperBound = "'$v'.0")]/' src/VSIX/Properties/AssemblyInfo.cs
1818

19-
exit
20-
2119
git add .appveyor.yml
2220
git add src/Npgsql/Npgsql.csproj
2321
git add src/VSIX/source.extension.vsixmanifest

src/Npgsql/Npgsql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Copyright>Copyright 2017 © The Npgsql Development Team</Copyright>
77
<Company>Npgsql</Company>
88
<PackageTags>npgsql postgresql postgres ado ado.net database sql</PackageTags>
9-
<VersionPrefix>3.2.2</VersionPrefix>
9+
<VersionPrefix>3.2.3</VersionPrefix>
1010
<TargetFrameworks>net45;net451;netstandard1.3</TargetFrameworks>
1111
<WarningsAsErrors>true</WarningsAsErrors>
1212
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

src/VSIX/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
// Specifically, the EF6 provider usuall depends on some old Npgsql, and trying to generate an EDM
2020
// model from an existing database will fail because of this. The following line redirects the EF6
2121
// to use our own Npgsql instead.
22-
[assembly: ProvideBindingRedirection(AssemblyName = "Npgsql", NewVersion = "3.2.2.0", OldVersionLowerBound = "0.0.0.0", OldVersionUpperBound = "3.2.2.0")]
22+
[assembly: ProvideBindingRedirection(AssemblyName = "Npgsql", NewVersion = "3.2.3.0", OldVersionLowerBound = "0.0.0.0", OldVersionUpperBound = "3.2.3.0")]

src/VSIX/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="Npgsql.VSIX.07074491-d0c6-4138-9d44-ea3f8920e84b" Version="3.2.2" Language="en-US" Publisher="npgsql" />
4+
<Identity Id="Npgsql.VSIX.07074491-d0c6-4138-9d44-ea3f8920e84b" Version="3.2.3" Language="en-US" Publisher="npgsql" />
55
<DisplayName>Npgsql PostgreSQL Integration</DisplayName>
66
<Description xml:space="preserve">Allows you to connect to PostgreSQL from within Visual Studio via Server Explorer, create EF6 model from existing database, etc.</Description>
77
<MoreInfo>http://www.npgsql.org/doc/ddex.html</MoreInfo>

0 commit comments

Comments
 (0)