Skip to content

Commit a61fc96

Browse files
committed
feat: add AWS US East 2 (Ohio) region support
1 parent a9a8394 commit a61fc96

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ You must also specify in which region your SQL session should execute
201201
into. Wherobots Cloud supports the following compute regions:
202202

203203
* `aws-us-east-1`: AWS US East 1 (N. Virginia)
204+
* `aws-us-east-2`: AWS US East 2 (Ohio)
204205
* `aws-us-west-2`: AWS US West 2 (Oregon)
205206
* `aws-eu-west-1`: AWS EU West 1 (Ireland)
206207
* `aws-ap-south-1`: AWS AP South 1 (Mumbai)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "wherobots-python-dbapi"
3-
version = "0.25.4"
3+
version = "0.26.0"
44
description = "Python DB-API driver for Wherobots DB"
55
authors = [{ name = "Maxime Petazzoni", email = "max@wherobots.com" }]
66
requires-python = ">=3.10, <4"

wherobots/db/region.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
class Region(Enum):
55
# Americas
66
AWS_US_EAST_1 = "aws-us-east-1"
7+
AWS_US_EAST_2 = "aws-us-east-2"
78
AWS_US_WEST_2 = "aws-us-west-2"
89

910
# EMEA

0 commit comments

Comments
 (0)