Skip to content

Commit

Permalink
Release/0.4.0 (#100)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* Version Update

Updated version to 0.4.0 and addressed comments in CHANGELOG.md

Co-authored-by: Charlene Solonynka <[email protected]>
  • Loading branch information
csolonynka and Charlene Solonynka authored Jul 7, 2021
1 parent 07fd35a commit efae516
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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).

## [v0.4.0](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v0.4.0) - 2021-07-07
### Added
- Linux 32-bit and Linux 64-bit support for the ODBC Driver
- Linux support for the ODBC sample client application

### Fixed
- Excessive memory usage
- Improved test cases
- Removed "ES_" and "TS_" from function and variable names
- All warnings in driver and enabled -Werror for Mac and Linux build

## [v0.3.2](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v0.3.2) - 2021-06-30
### Fixed
- Password appearing in plain text
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ set(DSN_INSTALLER_SRC "${CMAKE_CURRENT_SOURCE_DIR}/DSNInstaller")

# ODBC Driver version
set(MAJOR 0)
set(MINOR 3)
set(PATCH 2)
set(MINOR 4)
set(PATCH 0)
set(DRIVER_PACKAGE_VERSION "${MAJOR}.${MINOR}.${PATCH}")
set(DRIVER_PACKAGE_VERSION_COMMA_SEPARATED "${MAJOR},${MINOR},${PATCH}")
add_compile_definitions( TS_ODBC_VERSION="${DRIVER_PACKAGE_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion src/odfesqlodbc/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.3.2";
: "0.4.0";
}

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

0 comments on commit efae516

Please sign in to comment.