Skip to content

Commit

Permalink
Bumping version to 1.1.2 and generate changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
FishtownBuildBot committed Mar 16, 2023
1 parent 1f7fd3f commit 1b26507
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 23 deletions.
8 changes: 1 addition & 7 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
[bumpversion]
current_version = 1.1.1

# `parse` allows parsing the version into the parts we need to check. There are some
# unnamed groups and that's okay because they do not need to be audited. If any part
# of the version passed and does not match the regex, it will fail.
# expected matches: `1.5.0`, `1.5.0a1`, `1.5.0a1.dev123457+nightly`
# excepted failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0`
current_version = 1.1.2
parse = (?P<major>[\d]+) # major version number
\.(?P<minor>[\d]+) # minor version number
\.(?P<patch>[\d]+) # patch version number
Expand Down
9 changes: 9 additions & 0 deletions .changes/1.1.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## dbt-bigquery 1.1.2 - March 16, 2023

### Fixes

- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605))

### Under the Hood

- backport changie to 1.1.latest ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254))
6 changes: 0 additions & 6 deletions .changes/unreleased/Fixes-20230315-130504.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/unreleased/Under the Hood-20220805-155615.yaml

This file was deleted.

17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
- Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases.
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
- 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-bigquery/blob/main/CONTRIBUTING.md#adding-changelog-entry)

## dbt-bigquery 1.1.2 - March 16, 2023

### Fixes

- Fix failing test by removing no erroneous asserts. ([#605](https://github.com/dbt-labs/dbt-bigquery/issues/605))

### Under the Hood

- backport changie to 1.1.latest ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254))



## dbt-bigquery 1.1.1 - July 5, 2022

### Fixes
Expand Down Expand Up @@ -40,6 +53,8 @@ This will prevent BigQuery from throwing an error since non-partitioned tables c
- [@yu-iskw](https://github.com/yu-iskw)([#108](https://github.com/dbt-labs/dbt-bigquery/pull/108))
- [@pgoslatara](https://github.com/pgoslatara) ([#66](https://github.com/dbt-labs/dbt-bigquery/pull/121))
- [@drewmcdonald](https://github.com/drewmcdonald)([#98](https://github.com/dbt-labs/dbt-bigquery/pull/98))
- [@rjh336](https://github.com/rjh336)([#79](https://github.com/dbt-labs/dbt-bigquery/pull/79))## Previous Releases
- [@rjh336](https://github.com/rjh336)([#79](https://github.com/dbt-labs/dbt-bigquery/pull/79))

## Previous Releases
For information on prior major and minor releases, see their changelogs:
- [1.0](https://github.com/dbt-labs/dbt-bigquery/blob/1.0.latest/CHANGELOG.md)
2 changes: 1 addition & 1 deletion dbt/adapters/bigquery/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.1.1"
version = "1.1.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _get_dbt_core_version():


package_name = "dbt-bigquery"
package_version = "1.1.1"
package_version = "1.1.2"
dbt_core_version = _get_dbt_core_version()
description = """The BigQuery adapter plugin for dbt"""

Expand Down

0 comments on commit 1b26507

Please sign in to comment.