Skip to content

Commit

Permalink
Bumping version to 1.0.0rc2 (#4321)
Browse files Browse the repository at this point in the history
* Bumping version to 1.0.0rc2

* Update changelog

Co-authored-by: Github Build Bot <[email protected]>
Co-authored-by: Jeremy Cohen <[email protected]>
  • Loading branch information
3 people authored Nov 22, 2021
1 parent e1a2e8d commit a495174
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 17 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.0.0rc1
current_version = 1.0.0rc2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## dbt-core 1.0.0rc2 (TBD)
## dbt-core 1.0.0 (Release TBD)

## dbt-core 1.0.0rc2 (November 22, 2021)

### Breaking changes
- Restrict secret env vars (prefixed `DBT_ENV_SECRET_`) to `profiles.yml` + `packages.yml` _only_. Raise an exception if a secret env var is used elsewhere ([#4310](https://github.com/dbt-labs/dbt-core/issues/4310), [#4311](https://github.com/dbt-labs/dbt-core/pull/4311))
Expand All @@ -8,8 +10,8 @@
- Avoid error when missing column in YAML description ([#4151](https://github.com/dbt-labs/dbt-core/issues/4151), [#4285](https://github.com/dbt-labs/dbt-core/pull/4285))
- Allow `--defer` flag to `dbt snapshot` ([#4110](https://github.com/dbt-labs/dbt-core/issues/4110), [#4296](https://github.com/dbt-labs/dbt-core/pull/4296))
- Install prerelease packages when `version` explicitly references a prerelease version, regardless of `install-prerelease` status ([#4243](https://github.com/dbt-labs/dbt-core/issues/4243), [#4295](https://github.com/dbt-labs/dbt-core/pull/4295))
- Add data attributes to json log messages[#4301](https://github.com/dbt-labs/dbt-core/pull/4301)
- Add event codes to all log events([#4319](https://github.com/dbt-labs/dbt-core/pull/4319))
- Add data attributes to json log messages ([#4301](https://github.com/dbt-labs/dbt-core/pull/4301))
- Add event codes to all log events ([#4319](https://github.com/dbt-labs/dbt-core/pull/4319))

### Fixes
- Fix serialization error with missing quotes in metrics model ref ([#4252](https://github.com/dbt-labs/dbt-core/issues/4252), [#4287](https://github.com/dbt-labs/dbt-core/pull/4289))
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ def _get_dbt_plugins_info():
yield plugin_name, mod.version


__version__ = '1.0.0rc1'
__version__ = '1.0.0rc2'
installed = get_installed_version()
4 changes: 2 additions & 2 deletions core/scripts/create_adapter_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,12 @@ def parse_args(argv=None):
parser.add_argument('adapter')
parser.add_argument('--title-case', '-t', default=None)
parser.add_argument('--dependency', action='append')
parser.add_argument('--dbt-core-version', default='1.0.0rc1')
parser.add_argument('--dbt-core-version', default='1.0.0rc2')
parser.add_argument('--email')
parser.add_argument('--author')
parser.add_argument('--url')
parser.add_argument('--sql', action='store_true')
parser.add_argument('--package-version', default='1.0.0rc1')
parser.add_argument('--package-version', default='1.0.0rc2')
parser.add_argument('--project-version', default='1.0')
parser.add_argument(
'--no-dependency', action='store_false', dest='set_dependency'
Expand Down
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


package_name = "dbt-core"
package_version = "1.0.0rc1"
package_version = "1.0.0rc2"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down
12 changes: 6 additions & 6 deletions docker/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ cffi==1.15.0
charset-normalizer==2.0.7
click==8.0.3
colorama==0.4.4
dbt-core==1.0.0rc1
dbt-core==1.0.0rc2
dbt-extractor==0.4.0
dbt-postgres==1.0.0rc1
dbt-postgres==1.0.0rc2
future==0.18.2
hologram==0.0.14
idna==3.3
importlib-metadata==4.8.1
importlib-metadata==4.8.2
isodate==0.6.0
Jinja2==2.11.3
jsonschema==3.1.1
Expand All @@ -23,11 +23,11 @@ mashumaro==2.9
minimal-snowplow-tracker==0.0.2
msgpack==1.0.2
networkx==2.6.3
packaging==21.2
packaging==21.3
parsedatetime==2.4
psycopg2-binary==2.9.1
psycopg2-binary==2.9.2
pycparser==2.21
pyparsing==2.4.7
pyparsing==3.0.6
pyrsistent==0.18.0
python-dateutil==2.8.2
python-slugify==5.0.2
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/dbt/adapters/postgres/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '1.0.0rc1'
version = '1.0.0rc2'
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _dbt_psycopg2_name():


package_name = "dbt-postgres"
package_version = "1.0.0rc1"
package_version = "1.0.0rc2"
description = """The postgres adpter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
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 @@


package_name = "dbt"
package_version = "1.0.0rc1"
package_version = "1.0.0rc2"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down

0 comments on commit a495174

Please sign in to comment.