Skip to content

Commit 236de13

Browse files
committed
bump version
1 parent eeda847 commit 236de13

File tree

6 files changed

+11
-20
lines changed

6 files changed

+11
-20
lines changed

.bumpversion.cfg

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
11
[bumpversion]
2-
current_version = 1.3.1
2+
current_version = 1.3.1.1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)
66
\.(?P<minor>\d+)
77
\.(?P<patch>\d+)
8-
((?P<release>[a-z]+)
9-
?(\.)?
10-
(?P<build>\d+))?
8+
(\.(?P<build>\d+))?
119
serialize =
12-
{major}.{minor}.{patch}{release}{build}
10+
{major}.{minor}.{patch}.{build}
1311
{major}.{minor}.{patch}
1412

15-
[bumpversion:part:release]
16-
first_value = a
17-
values =
18-
a
19-
b
20-
rc
21-
2213
[bumpversion:part:build]
23-
first_value = 1
14+
first_value = 0
2415

2516
[bumpversion:file:setup.py]
2617
search = package_version = "{current_version}"

dbt/adapters/iris/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.3.1"
1+
version = "1.3.1.1"

dbt/include/iris/macros/materializations/incremental/incremental.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
{% set incremental_predicates = config.get('incremental_predicates', none) %}
6262
{% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}
6363
{% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'predicates': incremental_predicates }) %}
64-
64+
6565
{%- call statement('main') -%}
6666
{{ strategy_sql_macro_func(strategy_arg_dict) }}
6767
{%- endcall -%}

dbt/include/iris/macros/materializations/table.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class IRISSession:
9292

9393
def __init__(self) -> None:
9494
self.engine = create_engine('iris+emb:///')
95-
95+
9696
def table(self, full_name) -> DataFrame:
9797
[schema, table] = full_name.split('.') if '.' in full_name else [self.default_schema, full_name]
9898
df = pandas.read_sql_table(table, self.engine, schema=schema)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package_name = "dbt-iris"
66
# make sure this always matches dbt/adapters/{adapter}/__version__.py
7-
package_version = "1.3.1"
7+
package_version = "1.3.1.1"
88
description = """The InterSystems IRIS adapter plugin for dbt"""
99

1010
thelibFolder = os.path.dirname(os.path.realpath(__file__))

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ deps =
1212
-e.
1313

1414

15-
[testenv:{integration,py37,py38,py39,py}-{ iris }]
16-
description = adapter plugin integration testing
15+
[testenv:{functional,py37,py38,py39,py}-iris]
16+
description = adapter plugin functional testing
1717
skip_install = true
1818
passenv = DBT_* IRIS_TEST_* PYTEST_ADOPTS
1919
commands =
20-
iris: {envpython} -m pytest -m profile_iris {posargs:test/integration}
2120
iris: {envpython} -m pytest {posargs} tests/functional
21+
iris: {envpython} -m pytest -m profile_iris {posargs:tests/functional}
2222
deps =
2323
-r requirements-dev.txt
2424
-e.

0 commit comments

Comments
 (0)