Skip to content

Commit

Permalink
Updated change log and version (#105)
Browse files Browse the repository at this point in the history
* Updated change log and version

Updated version to 0.4.1 and added information about resolving the intermittent crash in Excel to CHANGELOG.md

* Update CHANGELOG.md

Updated description for Excel crash.

Co-authored-by: Charlene Solonynka <[email protected]>
  • Loading branch information
csolonynka and Charlene Solonynka authored Jul 8, 2021
1 parent 3a25462 commit 92d3d5d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 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).

## [v0.4.1](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v0.4.1) - 2021-07-08
### Fixed
- Intermittent crash in Excel in multi-connection environments on disconnect. Aws::InitApi and Aws::ShutdownApi is now only called once per application instead of once per connection.

## [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
Expand All @@ -14,6 +18,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved test cases
- Removed "ES_" and "TS_" from function and variable names
- All warnings in driver and enabled -Werror for Mac and Linux build
- Plus sign (+) not working in connection string
- Removed "es_" and "ts_" from filename prefixes
- Failing tests when using Okta or Azure AD authentication

## [v0.3.2](https://github.com/Bit-Quill/timestream-odbc/releases/tag/v0.3.2) - 2021-06-30
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ set(DSN_INSTALLER_SRC "${CMAKE_CURRENT_SOURCE_DIR}/DSNInstaller")
# ODBC Driver version
set(MAJOR 0)
set(MINOR 4)
set(PATCH 0)
set(PATCH 1)
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.4.0";
: "0.4.1";
}

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

0 comments on commit 92d3d5d

Please sign in to comment.