Skip to content

Commit

Permalink
Release/v1.0.0 (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: Charlene Solonynka <[email protected]>
  • Loading branch information
csolonynka and Charlene Solonynka authored Sep 1, 2021
1 parent 2075209 commit 5948d9b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.0](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v1.0.0) - 2021-09-01
### Added
- 32 bit support for Amazon Linux 2.

## [v0.5.2](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v0.5.2) - 2021-08-29
### Added
- Sample odbc.ini and odbcinst.ini files.
Expand Down
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ set(INSTALL_SRC "${CMAKE_CURRENT_SOURCE_DIR}/installer")
set(DSN_INSTALLER_SRC "${CMAKE_CURRENT_SOURCE_DIR}/DSNInstaller")

# ODBC Driver version
set(VERSION_MAJOR 0)
set(VERSION_MINOR 5)
set(VERSION_PATCH 2)
set(VERSION_MAJOR 1)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)

add_compile_definitions( TS_ODBC_VERSION="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"
# Comma separated version is required for odbc administrator's driver file.
Expand Down
2 changes: 1 addition & 1 deletion src/timestreamsqlodbc/helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ConnStatusType GetStatus(void* conn) {
std::string GetVersion(void* conn) {
return conn
? static_cast< Communication* >(conn)->GetVersion()
: "0.5.2";
: "1.0.0";
}

BOOL ExecDirect(void* conn, StatementClass* stmt, const char* statement) {
Expand Down

0 comments on commit 5948d9b

Please sign in to comment.