Skip to content

Commit 4b04f1b

Browse files
committed
chore: bump driver version and upate changelog
1 parent 52e6d3a commit 4b04f1b

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

44
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).
55

6+
## [1.2.0] - 2024-12-12
7+
### :magic_wand: Added
8+
* [Custom endpoint plugin](https://github.com/aws/aws-advanced-python-wrapper/blob/main/docs/using-the-python-driver/using-plugins/UsingTheCustomEndpointPlugin.md), which adds support for RDS custom endpoints.
9+
610
## [1.1.1] - 2024-10-18
711
### :magic_wand: Added
812
* Support for MySQL version 9+ ([PR #713](https://github.com/aws/aws-advanced-python-wrapper/pull/713)).
@@ -22,6 +26,7 @@ The Amazon Web Services (AWS) Advanced Python Wrapper allows an application to t
2226
* Support for PostgreSQL
2327
* Support for MySQL
2428

29+
[1.2.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.1.1...1.2.0
2530
[1.1.1]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.1.0...1.1.1
2631
[1.1.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.0.0...1.1.0
2732
[1.0.0]: https://github.com/aws/aws-advanced-python-wrapper/releases/tag/1.0.0

Maintenance.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ to releases, so you should be able to upgrade to the latest minor version of tha
3333
software without encountering incompatible changes (e.g., 1.1.0 → 1.3.x).
3434

3535
Sometimes an incompatible change is unavoidable. When this happens, the software’s maintainers will increment
36-
the major version number (e.g., increment from `aws-advanced-python-wrapper` 1.1.1 to `aws-advanced-python-wrapper` 2.0.0).
36+
the major version number (e.g., increment from `aws-advanced-python-wrapper` 1.2.0 to `aws-advanced-python-wrapper` 2.0.0).
3737
The last minor version of the previous major version of the software will then enter a maintenance window
3838
(e.g., 1.3.x). During the maintenance window, the software will continue to receive bug fixes and security patches,
3939
but no new features.
@@ -57,4 +57,4 @@ from the updated source after the PRs are merged.
5757

5858
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
5959
|---------------|----------------------|---------|-----------------|--------------------------|------------------------|
60-
| 1 | 1.1.1 | Current | May 16, 2024 | May 16, 2024 | N/A |
60+
| 1 | 1.2.0 | Current | May 16, 2024 | May 16, 2024 | N/A |

aws_advanced_python_wrapper/driver_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
class DriverInfo:
1717
DRIVER_NAME = "aws_advanced_python_wrapper"
18-
DRIVER_VERSION = "1.1.1"
18+
DRIVER_VERSION = "1.2.0"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_advanced_python_wrapper"
3-
version = "1.1.1"
3+
version = "1.2.0"
44
description = "Amazon Web Services (AWS) Advanced Python Wrapper"
55
authors = ["Amazon Web Services"]
66
readme = "README.md"

0 commit comments

Comments
 (0)