Skip to content

Commit

Permalink
chore: bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
karenc-bq committed Sep 4, 2024
1 parent c887dc6 commit 0a8d28e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:

env:
BUILD_TYPE: Release
DRIVER_VERSION: 1.1.0

jobs:
build-windows:
Expand Down Expand Up @@ -64,7 +65,7 @@ jobs:
run: |
choco upgrade jq -y
. ".\sign_installer.ps1"
Invoke-SignInstaller ${{ github.workspace }}\wix winx64a ${{github.ref_name}} ${{ secrets.AWS_UNSIGNED_BUCKET }} ${{ secrets.AWS_SIGNED_BUCKET }} ${{ secrets.AWS_S3_KEY }}aws-mysql-odbc-${{github.ref_name}}-winx64a.msi
Invoke-SignInstaller ${{ github.workspace }}\wix winx64a ${{ env.DRIVER_VERSION}} ${{ secrets.AWS_UNSIGNED_BUCKET }} ${{ secrets.AWS_SIGNED_BUCKET }} ${{ secrets.AWS_S3_KEY }}aws-mysql-odbc-${{ env.DRIVER_VERSION}}-winx64a.msi
- name: Upload Windows installer as artifact
if: success()
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ 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/#semantic-versioning-200).

## [1.1.0] - 2024-09-04
### :magic_wand: Added
- [Okta authentication support](./docs/using-the-aws-driver/OktaAuthentication.md).

### :bug: Fixed
- Access violation error when retrieving driver diagnostic data ([Issue 202](https://github.com/aws/aws-mysql-odbc/issues/202)).

## [1.0.0] - 2024-07-17
The Amazon Web Services (AWS) ODBC Driver for MySQL allows an application to take advantage of the features of clustered MySQL databases. It is based on and can be used as a drop-in compatible for the MySQL Connector/ODBC driver, and is compatible with all MySQL deployments.

[1.1.0]: https://github.com/aws/aws-mysql-odbc/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/aws/aws-mysql-odbc/releases/tag/1.0.0
6 changes: 2 additions & 4 deletions docs/building-the-aws-driver/BuildingTheAwsDriver.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@
cmake -S . -B build -G "Visual Studio 17 2022" -DMYSQL_DIR="C:\Program Files\MySQL\MySQL Server 8.3" -DMYSQLCLIENT_STATIC_LINKING=TRUE
cmake --build build --config Release
```
4. To build the installer, MySQL 8.0.36 is required. Other MySQL versions may not work. Download the [MySQL 8.0.36](https://downloads.mysql.com/archives/community/) ZIP archive or msi installer. If the zip archive is used, unzip it to a folder before using it.

Run `build_installer.ps1` with specified MySQL 8.0.36 installation or unzipped folder path in a developer powershell. For example
4. To build the installer, run the following command:
```
.\build_installer.ps1 x64 Release "Visual Studio 17 2022" "C:\Users\MyUser\Downloads\mysql-8.0.36-winx64\mysql-8.0.36-winx64"
.\build_installer.ps1 x64 Release "Visual Studio 17 2022"
```

### Troubleshooting:
Expand Down
2 changes: 1 addition & 1 deletion version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

SET(CONNECTOR_MAJOR "1")
SET(CONNECTOR_MINOR "0")
SET(CONNECTOR_MINOR "1")
SET(CONNECTOR_PATCH "0")
SET(CONNECTOR_LEVEL "")
SET(CONNECTOR_QUALITY "GA")
Expand Down

0 comments on commit 0a8d28e

Please sign in to comment.