Skip to content

Commit d96a927

Browse files
[Automated] Merged prep-release/1.7.16_9389782380 into target 1.7.latest during release process
2 parents 533e2a2 + 9722af3 commit d96a927

File tree

11 files changed

+26
-21
lines changed

11 files changed

+26
-21
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.7.15
2+
current_version = 1.7.16
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.7.16.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## dbt-core 1.7.16 - June 05, 2024
2+
3+
### Features
4+
5+
- Add --host flag to dbt docs serve, defaulting to '127.0.0.1' ([#10229](https://github.com/dbt-labs/dbt-core/issues/10229))

.changes/unreleased/Features-20240527-124405.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
66
- Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-core/blob/main/CONTRIBUTING.md#adding-changelog-entry)
77

8+
## dbt-core 1.7.16 - June 05, 2024
9+
10+
### Features
11+
12+
- Add --host flag to dbt docs serve, defaulting to '127.0.0.1' ([#10229](https://github.com/dbt-labs/dbt-core/issues/10229))
13+
14+
15+
816
## dbt-core 1.7.15 - May 22, 2024
917

1018
### Fixes
@@ -15,8 +23,6 @@
1523

1624
- Explicitly bind to localhost in docs serve ([#10209](https://github.com/dbt-labs/dbt-core/issues/10209))
1725

18-
19-
2026
## dbt-core 1.7.14 - May 02, 2024
2127

2228
### Features

core/dbt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
232232
yield plugin_name
233233

234234

235-
__version__ = "1.7.15"
235+
__version__ = "1.7.16"
236236
installed = get_installed_version()

core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
package_name = "dbt-core"
28-
package_version = "1.7.15"
28+
package_version = "1.7.16"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

docker/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ FROM --platform=$build_for python:3.10.7-slim-bullseye as base
1616
# N.B. The refs updated automagically every release via bumpversion
1717
# N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@<some_version> is correct
1818

19-
ARG dbt_core_ref=dbt-core@v1.7.15
20-
ARG dbt_postgres_ref=dbt-core@v1.7.15
21-
ARG dbt_redshift_ref=dbt-redshift@v1.7.15
22-
ARG dbt_bigquery_ref=dbt-bigquery@v1.7.15
23-
ARG dbt_snowflake_ref=dbt-snowflake@v1.7.15
24-
ARG dbt_spark_ref=dbt-spark@v1.7.15
19+
ARG dbt_core_ref=dbt-core@v1.7.16
20+
ARG dbt_postgres_ref=dbt-core@v1.7.16
21+
ARG dbt_redshift_ref=dbt-redshift@v1.7.16
22+
ARG dbt_bigquery_ref=dbt-bigquery@v1.7.16
23+
ARG dbt_snowflake_ref=dbt-snowflake@v1.7.16
24+
ARG dbt_spark_ref=dbt-spark@v1.7.16
2525
# special case args
2626
ARG dbt_spark_version=all
2727
ARG dbt_third_party
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.15"
1+
version = "1.7.16"

plugins/postgres/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _dbt_psycopg2_name():
4141

4242

4343
package_name = "dbt-postgres"
44-
package_version = "1.7.15"
44+
package_version = "1.7.16"
4545
description = """The postgres adapter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.15"
1+
version = "1.7.16"

0 commit comments

Comments
 (0)