Skip to content

Commit

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

* Bumping version to 1.0.9

* Reverting dependency changes

Co-authored-by: Github Build Bot <[email protected]>
Co-authored-by: leahwicz <[email protected]>
  • Loading branch information
3 people authored Jan 5, 2023
1 parent b8323fc commit 2af004b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 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.8
current_version = 1.0.9
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
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.8'
__version__ = '1.0.9'
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.8')
parser.add_argument('--dbt-core-version', default='1.0.9')
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.8')
parser.add_argument('--package-version', default='1.0.9')
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.8"
package_version = "1.0.9"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

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.8'
version = '1.0.9'
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.8"
package_version = "1.0.9"
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.8, `pip install dbt` is no longer supported.')
print('As of v1.0.9, `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.8"
package_version = "1.0.9"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down

0 comments on commit 2af004b

Please sign in to comment.