From 16ee2b0a6881b494511e819dceb5c27c86eac9e3 Mon Sep 17 00:00:00 2001 From: Ryan Chipman Date: Tue, 14 Jan 2020 12:22:00 -0500 Subject: [PATCH] BUMP v1.3.0 --- ChangeLog | 5 +++++ mongodb-odbc-driver/bin/VERSION.txt | 2 +- mongodb-odbc-driver/installer/msi/BinaryFragment.wxs | 4 ++-- mongodb-odbc-driver/installer/msi/build-msi.ps1 | 6 +++--- setupgui/windows/odbcdialogparams.rc | 4 ++-- version.cmake | 2 +- 6 files changed, 14 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0edafea9..d76d429a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +MongoDB ODBC 1.3.0 + * Update ICU Download link + * Support python 3 in mac installer + * Use OpenSSL on Windows for TLS 1.2 support + MongoDB ODBC 1.2.0 * Fixed OS X installer bug diff --git a/mongodb-odbc-driver/bin/VERSION.txt b/mongodb-odbc-driver/bin/VERSION.txt index 26aaba0e..f0bb29e7 100644 --- a/mongodb-odbc-driver/bin/VERSION.txt +++ b/mongodb-odbc-driver/bin/VERSION.txt @@ -1 +1 @@ -1.2.0 +1.3.0 diff --git a/mongodb-odbc-driver/installer/msi/BinaryFragment.wxs b/mongodb-odbc-driver/installer/msi/BinaryFragment.wxs index 2f6e6a38..dff9dc0f 100644 --- a/mongodb-odbc-driver/installer/msi/BinaryFragment.wxs +++ b/mongodb-odbc-driver/installer/msi/BinaryFragment.wxs @@ -32,11 +32,11 @@ - + - + diff --git a/mongodb-odbc-driver/installer/msi/build-msi.ps1 b/mongodb-odbc-driver/installer/msi/build-msi.ps1 index 2c2ddfcd..f97af357 100644 --- a/mongodb-odbc-driver/installer/msi/build-msi.ps1 +++ b/mongodb-odbc-driver/installer/msi/build-msi.ps1 @@ -31,7 +31,7 @@ $version = $matches[1] # rev the minor version (1.0 -> 1.1). That way, we # will allow multiple minor versions to be installed # side-by-side. -if ([double]$version -gt 1.2) { +if ([double]$version -gt 1.3) { throw "You must change the upgrade code for a minor revision. Once that is done, change the version number above to account for the next revision that will require being @@ -39,9 +39,9 @@ upgradeable. Make sure to change both x64 and x86 upgradeCode" } if ($Arch -eq "x64") { - $upgradeCode = "56c0cda6-269a-49d0-a539-6711818088be" + $upgradeCode = "650564f1-27f0-459b-95df-f186ddf8eb16" } else { - $upgradeCode = "01623c80-6101-499d-bce8-da693e3796f6" + $upgradeCode = "5095a972-40ba-4003-844a-7dff745996d2" } diff --git a/setupgui/windows/odbcdialogparams.rc b/setupgui/windows/odbcdialogparams.rc index 6d6cb57a..d79df9f4 100644 --- a/setupgui/windows/odbcdialogparams.rc +++ b/setupgui/windows/odbcdialogparams.rc @@ -58,14 +58,14 @@ BEGIN BEGIN VALUE "Comments", "provides setup library functionality\0" VALUE "CompanyName", "MongoDB Inc.\0" - VALUE "FileDescription", "MongoDB ODBC 1.2.0 Driver Setup Library\0" + VALUE "FileDescription", "MongoDB ODBC 1.3.0 Driver Setup Library\0" VALUE "FileVersion", MYODBC_STRFILEVER VALUE "InternalName", "mdbodbcS\0" VALUE "LegalCopyright", "Copyright (c) 1995, 2013, Oracle and/or its affiliates, Copyright (c) 2018-Present MongoDB Inc.\0" VALUE "LegalTrademarks", "MongoDB is a trademark of MongoDB Inc.\0" VALUE "OriginalFilename", "mdbodbcS.dll\0" VALUE "PrivateBuild", "Production\0" - VALUE "ProductName", "MongoDB ODBC 1.2.0\0" + VALUE "ProductName", "MongoDB ODBC 1.3.0\0" VALUE "ProductVersion", MYODBC_STRPRODUCTVER VALUE "SpecialBuild", "GA release\0" END diff --git a/version.cmake b/version.cmake index 967d1258..73196154 100644 --- a/version.cmake +++ b/version.cmake @@ -23,7 +23,7 @@ # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA SET(CONNECTOR_MAJOR "1") -SET(CONNECTOR_MINOR "2") +SET(CONNECTOR_MINOR "3") SET(CONNECTOR_PATCH "0") SET(CONNECTOR_LEVEL "") SET(CONNECTOR_QUALITY "GA")