diff --git a/.github/workflows/oracle-xe-adapter-tests.yml b/.github/workflows/oracle-xe-adapter-tests.yml index 8c5405d..4ecf53f 100644 --- a/.github/workflows/oracle-xe-adapter-tests.yml +++ b/.github/workflows/oracle-xe-adapter-tests.yml @@ -48,7 +48,7 @@ jobs: - name: Install dbt-oracle with core dependencies run: | python -m pip install --upgrade pip - pip install pytest dbt-tests-adapter==1.4.1 + pip install pytest dbt-tests-adapter==1.4.4 pip install -r requirements.txt pip install -e . diff --git a/Makefile b/Makefile index 6525a9d..18a6a8f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Configuration variables -VERSION=1.3.2 +VERSION=1.4.1 PROJ_DIR?=$(shell pwd) VENV_DIR?=${PROJ_DIR}/.bldenv BUILD_DIR=${PROJ_DIR}/build diff --git a/dbt/adapters/oracle/__version__.py b/dbt/adapters/oracle/__version__.py index faaccab..486ee04 100644 --- a/dbt/adapters/oracle/__version__.py +++ b/dbt/adapters/oracle/__version__.py @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and limitations under the License. """ -version = "1.4.1" +version = "1.4.4" diff --git a/requirements.txt b/requirements.txt index ec6732a..01cb665 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dbt-core==1.4.1 +dbt-core==1.4.4 cx_Oracle==8.3.0 oracledb==1.2.2 diff --git a/requirements_dev.txt b/requirements_dev.txt index 89ffe99..b76eefb 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -6,4 +6,4 @@ tox coverage twine pytest -dbt-tests-adapter==1.4.1 \ No newline at end of file +dbt-tests-adapter==1.4.4 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 6e9cf7a..4413add 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dbt-oracle -version = 1.4.0 +version = 1.4.1 description = dbt (data build tool) adapter for the Oracle database long_description = file: README.md long_description_content_type = text/markdown @@ -33,12 +33,12 @@ zip_safe = False packages = find: include_package_data = True install_requires = - dbt-core==1.4.1 + dbt-core==1.4.4 cx_Oracle==8.3.0 oracledb==1.2.2 test_suite=tests test_requires = - dbt-tests-adapter==1.4.1 + dbt-tests-adapter==1.4.4 pytest scripts = bin/create-pem-from-p12 diff --git a/setup.py b/setup.py index 8725342..714cc02 100644 --- a/setup.py +++ b/setup.py @@ -32,13 +32,13 @@ requirements = [ - "dbt-core==1.4.1", + "dbt-core==1.4.4", "cx_Oracle==8.3.0", "oracledb==1.2.2" ] test_requirements = [ - "dbt-tests-adapter==1.4.1", + "dbt-tests-adapter==1.4.4", "pytest" ] @@ -52,7 +52,7 @@ url = 'https://github.com/oracle/dbt-oracle' -VERSION = '1.4.0' +VERSION = '1.4.1' setup( author="Oracle", python_requires='>=3.7.2', diff --git a/tox.ini b/tox.ini index b1631f3..8504a93 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ passenv = deps = -rrequirements.txt - dbt-tests-adapter==1.4.1 + dbt-tests-adapter==1.4.4 pytest commands = pytest