Skip to content

Commit 49fc37c

Browse files
committed
Preparing for release 1.1.2
- Upgraded dbt-core to version 1.1.2 - Upgraded dbt-adapter-tests to version 1.1.2 - Upgraded oracledb to 1.0.3
1 parent a1f1d4d commit 49fc37c

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

.github/workflows/oracle-xe-adapter-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install dbt-oracle with core dependencies
4646
run: |
4747
python -m pip install --upgrade pip
48-
pip install pytest dbt-tests-adapter==1.1.1
48+
pip install pytest dbt-tests-adapter==1.1.2
4949
pip install -r requirements.txt
5050
pip install -e .
5151

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configuration variables
2-
VERSION=1.1.2rc1
2+
VERSION=1.1.2rc2
33
PROJ_DIR?=$(shell pwd)
44
VENV_DIR?=${PROJ_DIR}/.bldenv
55
BUILD_DIR=${PROJ_DIR}/build

dbt/adapters/oracle/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
version = "1.1.1"
17+
version = "1.1.2"

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
dbt-core==1.1.1
1+
dbt-core==1.1.2
22
cx_Oracle==8.3.0
3+
oracledb==1.0.3
34

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tox
66
coverage
77
twine
88
pytest
9-
dbt-tests-adapter==1.1.1
9+
dbt-tests-adapter==1.1.2

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dbt-oracle
3-
version = 1.1.2rc1
3+
version = 1.1.2rc2
44
description = dbt (data build tool) adapter for the Oracle database
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -32,12 +32,12 @@ zip_safe = False
3232
packages = find:
3333
include_package_data = True
3434
install_requires =
35-
dbt-core==1.1.1
35+
dbt-core==1.1.2
3636
cx_Oracle==8.3.0
37-
oracledb==1.0.1
37+
oracledb==1.0.3
3838
test_suite=tests
3939
test_requires =
40-
dbt-tests-adapter==1.1.1
40+
dbt-tests-adapter==1.1.2
4141
pytest
4242
scripts =
4343
bin/create-pem-from-p12

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333

3434
requirements = [
35-
"dbt-core==1.1.1",
35+
"dbt-core==1.1.2",
3636
"cx_Oracle==8.3.0",
37-
"oracledb==1.0.1"
37+
"oracledb==1.0.3"
3838
]
3939

4040
test_requirements = [
41-
"dbt-tests-adapter==1.1.1",
41+
"dbt-tests-adapter==1.1.2",
4242
"pytest"
4343
]
4444

@@ -52,7 +52,7 @@
5252

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

55-
VERSION='1.1.2rc1'
55+
VERSION = '1.1.2rc2'
5656
setup(
5757
author="Oracle",
5858
python_requires='>=3.7.2',

0 commit comments

Comments
 (0)