From c3d12faeb62832d5621163f63994552575040715 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 9 Dec 2024 10:07:23 -0800 Subject: [PATCH 1/3] bump to 1.9.0 --- dbt-athena-community/pyproject.toml | 2 +- dbt-athena/pyproject.toml | 2 +- dbt-athena/src/dbt/adapters/athena/__version__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dbt-athena-community/pyproject.toml b/dbt-athena-community/pyproject.toml index c0a7e9b8..caf1d15a 100644 --- a/dbt-athena-community/pyproject.toml +++ b/dbt-athena-community/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ ] # these versions should always match and they both should match the local version of dbt-athena dependencies = ["dbt-athena==1.9.0rc1"] -version = "1.9.0rc1" +version = "1.9.0" [project.urls] Homepage = "https://github.com/dbt-labs/dbt-athena/dbt-athena" Documentation = "https://docs.getdbt.com" diff --git a/dbt-athena/pyproject.toml b/dbt-athena/pyproject.toml index 27b84498..24e35e96 100644 --- a/dbt-athena/pyproject.toml +++ b/dbt-athena/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ ] dependencies=[ "dbt-adapters>=1.0.0b2,<2.0", - "dbt-common>=1.0.0b2,<2.0", + "dbt-common>=1.0.0,<2.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency "dbt-core>=1.8.0", "boto3>=1.28", diff --git a/dbt-athena/src/dbt/adapters/athena/__version__.py b/dbt-athena/src/dbt/adapters/athena/__version__.py index c70591d8..7aba6409 100644 --- a/dbt-athena/src/dbt/adapters/athena/__version__.py +++ b/dbt-athena/src/dbt/adapters/athena/__version__.py @@ -1 +1 @@ -version = "1.9.0rc1" +version = "1.9.0" From 46bf320660e8854921442dea05c33def6e375222 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 9 Dec 2024 10:18:16 -0800 Subject: [PATCH 2/3] remove pre release signifier from dbt-adapters req --- dbt-athena/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt-athena/pyproject.toml b/dbt-athena/pyproject.toml index 24e35e96..1353ccda 100644 --- a/dbt-athena/pyproject.toml +++ b/dbt-athena/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] dependencies=[ - "dbt-adapters>=1.0.0b2,<2.0", + "dbt-adapters>=1.0.0,<2.0", "dbt-common>=1.0.0,<2.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency "dbt-core>=1.8.0", From 8806540ba9f0bd81a10df0950e62a3787accc72b Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 9 Dec 2024 10:21:46 -0800 Subject: [PATCH 3/3] bump comm dep on dbt-athena --- dbt-athena-community/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt-athena-community/pyproject.toml b/dbt-athena-community/pyproject.toml index caf1d15a..a6f26907 100644 --- a/dbt-athena-community/pyproject.toml +++ b/dbt-athena-community/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] # these versions should always match and they both should match the local version of dbt-athena -dependencies = ["dbt-athena==1.9.0rc1"] +dependencies = ["dbt-athena==1.9.0"] version = "1.9.0" [project.urls] Homepage = "https://github.com/dbt-labs/dbt-athena/dbt-athena"