Skip to content

Commit

Permalink
Bumping version to 1.1.0rc1 (#157)
Browse files Browse the repository at this point in the history
* Bumping version to 1.1.0rc1

* Remove extra spaces

* Updating requirements to latest release branch

* Updating manifest in tests

Co-authored-by: Github Build Bot <[email protected]>
Co-authored-by: leahwicz <[email protected]>
  • Loading branch information
3 people authored Apr 13, 2022
1 parent 3d69869 commit a2156ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.0b1
current_version = 1.1.0rc1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
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.0b1"
version = "1.1.0rc1"
4 changes: 2 additions & 2 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# install latest changes in dbt-core
# TODO: how to automate switching from develop to version branches?
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=tests/adapter
git+https://github.com/dbt-labs/dbt-core.git@1.1.latest#egg=dbt-core&subdirectory=core
git+https://github.com/dbt-labs/dbt-core.git@1.1.latest#egg=dbt-tests-adapter&subdirectory=tests/adapter

black==22.3.0
bumpversion
Expand Down
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.0b1"
package_version = "1.1.0rc1"
dbt_core_version = _get_dbt_core_version()
description = """The BigQuery adapter plugin for dbt"""

Expand Down
6 changes: 3 additions & 3 deletions tests/integration/docs_generate_tests/test_docs_generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def expected_seeded_manifest(self, model_database=None, quote_model=False):
)

return {
'dbt_schema_version': 'https://schemas.getdbt.com/dbt/manifest/v4.json',
'dbt_schema_version': 'https://schemas.getdbt.com/dbt/manifest/v5.json',
'dbt_version': dbt.version.__version__,
'nodes': {
'model.test.model': {
Expand Down Expand Up @@ -1306,7 +1306,7 @@ def expected_bigquery_complex_manifest(self):
my_schema_name = self.unique_schema()

return {
'dbt_schema_version': 'https://schemas.getdbt.com/dbt/manifest/v4.json',
'dbt_schema_version': 'https://schemas.getdbt.com/dbt/manifest/v5.json',
'dbt_version': dbt.version.__version__,
'nodes': {
'model.test.clustered': {
Expand Down Expand Up @@ -1828,7 +1828,7 @@ def verify_manifest(self, expected_manifest):
elif key == 'metadata':
metadata = manifest['metadata']
self.verify_metadata(
metadata, 'https://schemas.getdbt.com/dbt/manifest/v4.json')
metadata, 'https://schemas.getdbt.com/dbt/manifest/v5.json')
assert 'project_id' in metadata and metadata[
'project_id'] == '098f6bcd4621d373cade4e832627b4f6'
assert 'send_anonymous_usage_stats' in metadata and metadata[
Expand Down

0 comments on commit a2156ad

Please sign in to comment.