Skip to content

Commit

Permalink
Update CHANGELOG and version for 2.1.1
Browse files Browse the repository at this point in the history
### Summary

<!--- General summary / title -->

Update CHANGELOG and version for 2.1.1.

### Description

<!--- Details of what you changed -->

- Version updated to 2.1.1.
- 2.1.1 changes added to CHANGELOG.

### Related Issue

<!--- Link to issue where this is tracked -->

N/A

### Additional Reviewers

<!-- Any additional reviewers -->

N/A
  • Loading branch information
trevorbonas authored Jul 18, 2024
1 parent d96e694 commit cb5d354
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.1.1](https://github.com/awslabs/amazon-timestream-odbc-driver/releases/tag/v2.1.1) - 2024-07-18

### Fixed

- [Fix SQLGetData not properly decreasing the number of remaining bytes left for variable-length data](https://github.com/awslabs/amazon-timestream-odbc-driver/pull/17).

## [v2.1.0](https://github.com/awslabs/amazon-timestream-odbc-driver/releases/tag/v2.1.0) - 2024-07-10

### Added
Expand Down
22 changes: 11 additions & 11 deletions docs/markdown/setup/linux-installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@ sudo yum install unixODBC

#### Sample command for Debian 64 bit
```
sudo dpkg -i AmazonTimestreamODBC_2.1.0_RELEASE_amd64.deb
sudo dpkg -i AmazonTimestreamODBC_2.1.1_RELEASE_amd64.deb
```
#### Sample command for Debian 32 bit
```
sudo dpkg -i AmazonTimestreamODBC_2.1.0_RELEASE_i386.deb
sudo dpkg -i AmazonTimestreamODBC_2.1.1_RELEASE_i386.deb
```
#### Sample command for RPM based 64 bit
```
sudo rpm -i AmazonTimestreamODBC_2.1.0_RELEASE_x86_64.rpm
sudo rpm -i AmazonTimestreamODBC_2.1.1_RELEASE_x86_64.rpm
```
#### Sample command for RPM based 32 bit
```
sudo rpm -i AmazonTimestreamODBC_2.1.0_RELEASE_i386.rpm
sudo rpm -i AmazonTimestreamODBC_2.1.1_RELEASE_i386.rpm
```
3. Register the ODBC driver by running the following script.
Expand All @@ -76,32 +76,32 @@ There is no automatical way to uninstall it. It has to be done manually.
#### Command for RPM based 64 bit
```
sudo zypper remove amazontimestreamodbc_2.1.0_release_x86_64
sudo zypper remove amazontimestreamodbc_2.1.1_release_x86_64
```
or
```
sudo yum remove amazontimestreamodbc_2.1.0_release_x86_64
sudo yum remove amazontimestreamodbc_2.1.1_release_x86_64
```
#### Command for RPM based 32 bit
```
sudo zypper remove amazontimestreamodbc_2.1.0_release_i386
sudo zypper remove amazontimestreamodbc_2.1.1_release_i386
```
or
```
sudo yum remove amazontimestreamodbc_2.1.0_release_i386
sudo yum remove amazontimestreamodbc_2.1.1_release_i386
```
#### Command for Debian 64 bit
```
sudo apt remove amazontimestreamodbc_2.1.0_release_amd64
sudo apt remove amazontimestreamodbc_2.1.1_release_amd64
```
#### Command for Debian 32 bit
```
sudo apt remove amazontimestreamodbc_2.1.0_release_i386
sudo apt remove amazontimestreamodbc_2.1.1_release_i386
```
2. If "Amazon Timestream ODBC Driver" entry still exists in /etc/odbcinst.ini or /etc/unixODBC/odbcinst.ini, remove it.
Expand All @@ -118,7 +118,7 @@ There is no automatical way to uninstall it. It has to be done manually.
4. Remove the libraries installed to /usr/lib if they exist
```
sudo rm /usr/lib/libtimestream-odbc.so /usr/lib/libtimestream-odbc.so.2.1.0
sudo rm /usr/lib/libtimestream-odbc.so /usr/lib/libtimestream-odbc.so.2.1.1
```
Expand Down
2 changes: 1 addition & 1 deletion docs/markdown/setup/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You need to do the following:

### Timestream ODBC Driver Download
Download the Timestream ODBC driver [here](https://github.com/awslabs/amazon-timestream-odbc-driver/releases). Choose the proper installer
(e.g., `timestream-odbc-installer-amd64-2.1.0.exe`).
(e.g., `timestream-odbc-installer-amd64-2.1.1.exe`).

### Timestream ODBC Driver Installation
- [Windows Installation Guide](windows-installation-guide.md)
Expand Down
2 changes: 1 addition & 1 deletion src/ODBC_DRIVER_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1

0 comments on commit cb5d354

Please sign in to comment.