Skip to content

Commit 728d415

Browse files
authored
Bump version to 1.1 for Opensearch 1.1.0.0 release (#202)
* bump workbench versions to 1.1 Signed-off-by: David Cui <[email protected]> * bump version to 1.1.0.0 for 1.1 release Signed-off-by: David Cui <[email protected]> * add release notes for 1.1 Signed-off-by: David Cui <[email protected]> * bump odbc files to 1.1.0.0 Signed-off-by: David Cui <[email protected]>
1 parent a274c4b commit 728d415

File tree

12 files changed

+39
-15
lines changed

12 files changed

+39
-15
lines changed

.github/workflows/draft-release-notes-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
with:
1717
config-name: draft-release-notes-config.yml
1818
tag: (None)
19-
version: 1.0.0.0
19+
version: 1.1.0.0
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/sql-odbc-release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
ODBC_BUILD_PATH: "./build/odbc/build"
1313
AWS_SDK_INSTALL_PATH: "./build/aws-sdk/install"
1414
PLUGIN_NAME: opensearch-sql-odbc
15-
OD_VERSION: 1.0.0.0
15+
OD_VERSION: 1.1.0.0
1616

1717
jobs:
1818
build-mac:

.github/workflows/sql-odbc-rename-and-release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- rename*
99

1010
env:
11-
OD_VERSION: 1.0.0.0
11+
OD_VERSION: 1.1.0.0
1212

1313
jobs:
1414
upload-odbc:

.github/workflows/sql-workbench-test-and-build-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [pull_request, push]
44

55
env:
66
PLUGIN_NAME: query-workbench-dashboards
7-
OPENSEARCH_VERSION: '1.0'
8-
OPENSEARCH_PLUGIN_VERSION: 1.0.0.0
7+
OPENSEARCH_VERSION: '1.x'
8+
OPENSEARCH_PLUGIN_VERSION: 1.1.0.0
99

1010
jobs:
1111

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## 2021-09-02 Version 1.1.0.0
2+
3+
Compatible with OpenSearch and OpenSearch Dashboards Version 1.1.0
4+
5+
### Enhancements
6+
7+
* Support implicit type conversion from string to boolean ([#166](https://github.com/opensearch-project/sql/pull/166))
8+
* Support distinct count aggregation ([#167](https://github.com/opensearch-project/sql/pull/167))
9+
* Support implicit type conversion from string to temporal ([#171](https://github.com/opensearch-project/sql/pull/171))
10+
* Workbench: auto dump cypress test data, support security ([#199](https://github.com/opensearch-project/sql/pull/199))
11+
12+
### Bug Fixes
13+
14+
* Fix for SQL-ODBC AWS Init and Shutdown Behaviour ([#163](https://github.com/opensearch-project/sql/pull/163))
15+
* Fix import path for cypress constant ([#201](https://github.com/opensearch-project/sql/pull/201))
16+
17+
18+
### Infrastructure
19+
20+
* Add Integtest.sh for OpenSearch integtest setups (workbench) ([#157](https://github.com/opensearch-project/sql/pull/157))
21+
* Bump path-parse from 1.0.6 to 1.0.7 in /workbench ([#178](https://github.com/opensearch-project/sql/pull/178))
22+
* Use externally-defined OpenSearch version when specified. ([#179](https://github.com/opensearch-project/sql/pull/179))
23+
* Use OpenSearch 1.1 and build snapshot by default in CI. ([#181](https://github.com/opensearch-project/sql/pull/181))
24+
* Workbench: remove curl commands in integtest.sh ([#200](https://github.com/opensearch-project/sql/pull/200))

sql-cli/src/opensearch_sql_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
express or implied. See the License for the specific language governing
2323
permissions and limitations under the License.
2424
"""
25-
__version__ = "1.0.0.0"
25+
__version__ = "1.1.0.0"

sql-jdbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ plugins {
4343
group 'org.opensearch.client'
4444

4545
// keep version in sync with version in Driver source
46-
version '1.0.0.0'
46+
version '1.1.0.0'
4747

4848
boolean snapshot = "true".equals(System.getProperty("build.snapshot", "false"));
4949
if (snapshot) {

sql-odbc/src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ set(INSTALL_SRC "${CMAKE_CURRENT_SOURCE_DIR}/installer")
8787
set(DSN_INSTALLER_SRC "${CMAKE_CURRENT_SOURCE_DIR}/DSNInstaller")
8888

8989
# ODBC Driver version
90-
set(DRIVER_PACKAGE_VERSION "1.0.0.0")
91-
set(DRIVER_PACKAGE_VERSION_COMMA_SEPARATED "1,0,0,0")
90+
set(DRIVER_PACKAGE_VERSION "1.1.0.0")
91+
set(DRIVER_PACKAGE_VERSION_COMMA_SEPARATED "1,1,0,0")
9292
add_compile_definitions( OPENSEARCH_ODBC_VERSION="${DRIVER_PACKAGE_VERSION}"
9393
# Comma separated version is required for odbc administrator's driver file.
9494
OPENSEARCH_ODBC_DRVFILE_VERSION=${DRIVER_PACKAGE_VERSION_COMMA_SEPARATED} )

sql-odbc/src/TableauConnector/opensearch_sql_odbc/manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3-
<connector-plugin class='opensearch_sql_odbc' superclass='odbc' plugin-version='1.0.0.0' name='SQL' version='18.1' min-version-tableau='2020.1'>
3+
<connector-plugin class='opensearch_sql_odbc' superclass='odbc' plugin-version='1.1.0.0' name='SQL' version='18.1' min-version-tableau='2020.1'>
44
<vendor-information>
55
<company name="OpenSearch for ES"/>
66
<support-link url="https://github.com/opensearch-project/sql"/>

sql-odbc/src/TableauConnector/opensearch_sql_odbc_dev/manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3-
<connector-plugin class='opensearch_sql_odbc_dev' superclass='odbc' plugin-version='1.0.0.0' name='OpenSearch SQL ODBC DEV' version='18.1' min-version-tableau='2020.1'>
3+
<connector-plugin class='opensearch_sql_odbc_dev' superclass='odbc' plugin-version='1.1.0.0' name='OpenSearch SQL ODBC DEV' version='18.1' min-version-tableau='2020.1'>
44
<vendor-information>
55
<company name="OpenSearch"/>
66
<support-link url="https://github.com/opensearch-project/sql"/>

0 commit comments

Comments
 (0)