Skip to content

Commit

Permalink
Bumping version to 1.0.8 (#5378)
Browse files Browse the repository at this point in the history
* Bumping version to 1.0.8

* Add Changelog

Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com>
Co-authored-by: Leah Antkiewicz <leah.antkiewicz@fishtownanalytics.com>
  • Loading branch information
3 people authored Jun 15, 2022
1 parent 2cd8b1c commit f1f0065
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 22 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.7
current_version = 1.0.8
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
4 changes: 4 additions & 0 deletions .changes/1.0.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## dbt-core 1.0.8 - June 15, 2022
### Under the Hood
- Update context readme + clean up context code" ([#4796](https://github.com/dbt-labs/dbt-core/issues/4796), [#5334](https://github.com/dbt-labs/dbt-core/pull/5334))

7 changes: 0 additions & 7 deletions .changes/unreleased/Under the Hood-20220606-230353.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
- 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)


## dbt-core 1.0.8 - June 15, 2022
### Under the Hood
- Update context readme + clean up context code" ([#4796](https://github.com/dbt-labs/dbt-core/issues/4796), [#5334](https://github.com/dbt-labs/dbt-core/pull/5334))



## dbt-core 1.0.7 - May 20, 2022
### Dependencies
- Lowering networkx dependency range due to new version's breaking change ([#5254](https://github.com/dbt-labs/dbt-core/issues/5254), [#5280](https://github.com/dbt-labs/dbt-core/pull/5280))
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ def _get_dbt_plugins_info():
yield plugin_name, mod.version


__version__ = '1.0.7'
__version__ = '1.0.8'
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.7')
parser.add_argument('--dbt-core-version', default='1.0.8')
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.7')
parser.add_argument('--package-version', default='1.0.8')
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.7"
package_version = "1.0.8"
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
@@ -1,18 +1,18 @@
agate==1.6.3
attrs==21.4.0
Babel==2.10.1
Babel==2.10.2
certifi==2022.5.18.1
cffi==1.15.0
charset-normalizer==2.0.12
click==8.1.3
colorama==0.4.4
dbt-core==1.0.7
dbt-core==1.0.8
dbt-extractor==0.4.1
dbt-postgres==1.0.7
dbt-postgres==1.0.8
future==0.18.2
hologram==0.0.14
idna==3.3
importlib-metadata==4.11.3
importlib-metadata==4.11.4
isodate==0.6.1
Jinja2==2.11.3
jsonschema==3.1.1
Expand All @@ -21,7 +21,7 @@ Logbook==1.5.3
MarkupSafe==2.0.1
mashumaro==2.9
minimal-snowplow-tracker==0.0.2
msgpack==1.0.3
msgpack==1.0.4
networkx==2.8
packaging==21.3
parsedatetime==2.4
Expand All @@ -34,7 +34,7 @@ python-slugify==6.1.2
pytimeparse==1.1.8
pytz==2022.1
PyYAML==6.0
requests==2.27.1
requests==2.28.0
six==1.16.0
sqlparse==0.4.2
text-unidecode==1.3
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.7'
version = '1.0.8'
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.7"
package_version = "1.0.8"
description = """The postgres adpter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if 'sdist' not in sys.argv:
print('')
print('As of v1.0.7, `pip install dbt` is no longer supported.')
print('As of v1.0.8, `pip install dbt` is no longer supported.')
print('Instead, please use one of the following.')
print('')
print('**To use dbt with your specific database, platform, or query engine:**')
Expand Down Expand Up @@ -50,7 +50,7 @@


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

Expand Down

0 comments on commit f1f0065

Please sign in to comment.