From f19f9cf894d588ab1101b044f2c3c7a1c7596bc6 Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Thu, 18 Jul 2024 13:58:22 +0000 Subject: [PATCH] bump version to 0.3.9 --- AUTHORS.md | 2 ++ HISTORY.md | 11 +++++++++++ setup.py | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/AUTHORS.md b/AUTHORS.md index b6eb24f..7f7713b 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -14,3 +14,5 @@ Contributors * @NiallRees (Niall Woodward) * @seanglynn-thrive * @cjohnhanson (Cody J. Hanson) +* @AlejandroUPC (Alejandro Martínez Otal) +* @gregkoutsimp (Greg Koutsimpogiorgos) diff --git a/HISTORY.md b/HISTORY.md index fe9b7c8..e472854 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,16 @@ ## History +### 0.3.9 + +- update "google-cloud-bigquery>=3.25.0" +- update dependencies +- "simplejson>=3.11.0" + Thank you (@gregkoutsimp) + +### 0.3.8 +- Constrain numpy version to (< 2) for Meltano compatibility + Thank you (@AlejandroUPC) + ### 0.3.7 - Support providing credentials via env var (#26) Thank you (@cjohnhanson) diff --git a/setup.py b/setup.py index d35c678..4f5dbfc 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.3.7" +VERSION = "0.3.9" with open("README.md", "r") as fh: long_description = fh.read()