Skip to content

Commit

Permalink
Merge pull request #141 from oracle/dev/v1.7.5
Browse files Browse the repository at this point in the history
v1.7.5
  • Loading branch information
aosingh committed May 13, 2024
2 parents c6f7e3a + f2c3167 commit 7cd6f7c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configuration variables
VERSION=1.7.4
VERSION=1.7.5
PROJ_DIR?=$(shell pwd)
VENV_DIR?=${PROJ_DIR}/.bldenv
BUILD_DIR=${PROJ_DIR}/build
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/oracle/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
See the License for the specific language governing permissions and
limitations under the License.
"""
version = "1.7.11"
version = "1.7.14"
2 changes: 1 addition & 1 deletion dbt/include/oracle/macros/adapters.sql
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
create {% if temporary -%}
global temporary
{%- endif %} table {{ relation.include(schema=(not temporary)) }}
{%- if contract_config.enforced -%}
{%- if contract_config.enforced and not temporary -%}
{{ get_assert_columns_equivalent(sql) }}
{{ get_table_columns_and_constraints() }}
{%- set sql = get_select_subquery(sql) %}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dbt-core~=1.7,<1.8
oracledb==2.1.2
oracledb==2.2.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dbt-oracle
version = 1.7.4
version = 1.7.5
description = dbt (data build tool) adapter for Oracle Autonomous Database
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -34,7 +34,7 @@ packages = find_namespace:
include_package_data = True
install_requires =
dbt-core~=1.7,<1.8
oracledb==2.1.2
oracledb==2.2.0
test_suite=tests
test_requires =
dbt-tests-adapter~=1.7,<1.8
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

requirements = [
"dbt-core~=1.7,<1.8",
"oracledb==2.1.2"
"oracledb==2.2.0"
]

test_requirements = [
Expand All @@ -59,7 +59,7 @@

url = 'https://github.com/oracle/dbt-oracle'

VERSION = '1.7.4'
VERSION = '1.7.5'
setup(
author="Oracle",
python_requires='>=3.8',
Expand Down

0 comments on commit 7cd6f7c

Please sign in to comment.