mirror of
https://github.com/dbt-labs/dbt-core
synced 2025-12-19 04:31:28 +00:00
Compare commits
8 Commits
move-preco
...
v0.14.4b1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b47cb4af3 | ||
|
|
9c696314e9 | ||
|
|
f6f551a5e1 | ||
|
|
169f8949d2 | ||
|
|
e679c70835 | ||
|
|
70d9b013c4 | ||
|
|
b7b999bff6 | ||
|
|
2d84844960 |
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.14.2
|
current_version = 0.14.4b1
|
||||||
parse = (?P<major>\d+)
|
parse = (?P<major>\d+)
|
||||||
\.(?P<minor>\d+)
|
\.(?P<minor>\d+)
|
||||||
\.(?P<patch>\d+)
|
\.(?P<patch>\d+)
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
## dbt 0.14.3 (Unreleased)
|
## dbt 0.14.3 (October 10, 2019)
|
||||||
|
|
||||||
This is a bugfix release.
|
This is a bugfix release.
|
||||||
|
|
||||||
### Fixes:
|
### Fixes:
|
||||||
- Fix for `dictionary changed size during iteration` race condition ([#1740](https://github.com/fishtown-analytics/dbt/issues/1740), [#1750](https://github.com/fishtown-analytics/dbt/pull/1750))
|
- Fix for `dictionary changed size during iteration` race condition ([#1740](https://github.com/fishtown-analytics/dbt/issues/1740), [#1750](https://github.com/fishtown-analytics/dbt/pull/1750))
|
||||||
|
- Fix upper bound on jsonschema dependency to 3.1.1 ([#1817](https://github.com/fishtown-analytics/dbt/issues/1817), [#1819](https://github.com/fishtown-analytics/dbt/pull/1819))
|
||||||
|
|
||||||
### Under the hood:
|
### Under the hood:
|
||||||
- Provide a programmatic method for validating profile targets ([#1754](https://github.com/fishtown-analytics/dbt/issues/1754), [#1775](https://github.com/fishtown-analytics/dbt/pull/1775))
|
- Provide a programmatic method for validating profile targets ([#1754](https://github.com/fishtown-analytics/dbt/issues/1754), [#1775](https://github.com/fishtown-analytics/dbt/pull/1775))
|
||||||
|
|||||||
@@ -56,5 +56,5 @@ def get_version_information():
|
|||||||
.format(version_msg))
|
.format(version_msg))
|
||||||
|
|
||||||
|
|
||||||
__version__ = '0.14.2'
|
__version__ = '0.14.4b1'
|
||||||
installed = get_installed_version()
|
installed = get_installed_version()
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ def read(fname):
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-core"
|
package_name = "dbt-core"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """dbt (data build tool) is a command line tool that helps \
|
description = """dbt (data build tool) is a command line tool that helps \
|
||||||
analysts and engineers transform data in their warehouse more effectively"""
|
analysts and engineers transform data in their warehouse more effectively"""
|
||||||
|
|
||||||
@@ -51,7 +51,7 @@ setup(
|
|||||||
'requests>=2.18.0,<3',
|
'requests>=2.18.0,<3',
|
||||||
'colorama==0.3.9',
|
'colorama==0.3.9',
|
||||||
'agate>=1.6,<2',
|
'agate>=1.6,<2',
|
||||||
'jsonschema>=3.0.1,<4',
|
'jsonschema>=3.0.1,<3.1.2,!=3.1.0',
|
||||||
'json-rpc>=1.12,<2',
|
'json-rpc>=1.12,<2',
|
||||||
'werkzeug>=0.14.1,<0.15',
|
'werkzeug>=0.14.1,<0.15',
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
package_name = "dbt-bigquery"
|
package_name = "dbt-bigquery"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """The bigquery adapter plugin for dbt (data build tool)"""
|
description = """The bigquery adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
package_name = "dbt-postgres"
|
package_name = "dbt-postgres"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """The postgres adpter plugin for dbt (data build tool)"""
|
description = """The postgres adpter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
package_name = "dbt-redshift"
|
package_name = "dbt-redshift"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """The redshift adapter plugin for dbt (data build tool)"""
|
description = """The redshift adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
package_name = "dbt-snowflake"
|
package_name = "dbt-snowflake"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """The snowflake adapter plugin for dbt (data build tool)"""
|
description = """The snowflake adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -10,7 +10,7 @@ with open(os.path.join(this_directory, 'README.md')) as f:
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt"
|
package_name = "dbt"
|
||||||
package_version = "0.14.2"
|
package_version = "0.14.4b1"
|
||||||
description = """With dbt, data analysts and engineers can build analytics \
|
description = """With dbt, data analysts and engineers can build analytics \
|
||||||
the way engineers build applications."""
|
the way engineers build applications."""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user