Compare commits

...

8 Commits

Author SHA1 Message Date
Jacob Beck
2b47cb4af3 Bump version: 0.14.3 → 0.14.4b1 2019-11-06 11:02:30 -07:00
Connor McArthur
9c696314e9 Bump version: 0.14.3rc1 → 0.14.3 2019-10-10 18:25:03 -04:00
Connor McArthur
f6f551a5e1 Merge pull request #1820 from fishtown-analytics/dev/0.14.3
dbt 0.14.3
2019-10-10 15:01:06 -04:00
Connor McArthur
169f8949d2 update CHANGELOG 2019-10-10 13:56:31 -04:00
Jacob Beck
e679c70835 Merge pull request #1819 from fishtown-analytics/fix/pin-jsonschema
Set a much more strict version upper bound for jsonschema
2019-10-10 09:17:34 -04:00
Connor McArthur
70d9b013c4 add date to 0.14.3 2019-10-10 09:10:29 -04:00
Jacob Beck
b7b999bff6 Set a much more strict version upper bound for jsonschema
disallow 3.1.x, except for 3.1.1 which works fine
2019-10-10 06:12:31 -06:00
Connor McArthur
2d84844960 Bump version: 0.14.2 → 0.14.3rc1 2019-10-01 07:18:40 -04:00
9 changed files with 11 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.2
current_version = 0.14.4b1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)

View File

@@ -1,9 +1,10 @@
## dbt 0.14.3 (Unreleased)
## dbt 0.14.3 (October 10, 2019)
This is a bugfix release.
### 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 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:
- 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))

View File

@@ -56,5 +56,5 @@ def get_version_information():
.format(version_msg))
__version__ = '0.14.2'
__version__ = '0.14.4b1'
installed = get_installed_version()

View File

@@ -9,7 +9,7 @@ def read(fname):
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 \
analysts and engineers transform data in their warehouse more effectively"""
@@ -51,7 +51,7 @@ setup(
'requests>=2.18.0,<3',
'colorama==0.3.9',
'agate>=1.6,<2',
'jsonschema>=3.0.1,<4',
'jsonschema>=3.0.1,<3.1.2,!=3.1.0',
'json-rpc>=1.12,<2',
'werkzeug>=0.14.1,<0.15',
]

View File

@@ -4,7 +4,7 @@ from distutils.core import setup
import os
package_name = "dbt-bigquery"
package_version = "0.14.2"
package_version = "0.14.4b1"
description = """The bigquery adapter plugin for dbt (data build tool)"""
this_directory = os.path.abspath(os.path.dirname(__file__))

View File

@@ -4,7 +4,7 @@ from distutils.core import setup
import os
package_name = "dbt-postgres"
package_version = "0.14.2"
package_version = "0.14.4b1"
description = """The postgres adpter plugin for dbt (data build tool)"""
this_directory = os.path.abspath(os.path.dirname(__file__))

View File

@@ -4,7 +4,7 @@ from distutils.core import setup
import os
package_name = "dbt-redshift"
package_version = "0.14.2"
package_version = "0.14.4b1"
description = """The redshift adapter plugin for dbt (data build tool)"""
this_directory = os.path.abspath(os.path.dirname(__file__))

View File

@@ -4,7 +4,7 @@ from distutils.core import setup
import os
package_name = "dbt-snowflake"
package_version = "0.14.2"
package_version = "0.14.4b1"
description = """The snowflake adapter plugin for dbt (data build tool)"""
this_directory = os.path.abspath(os.path.dirname(__file__))

View File

@@ -10,7 +10,7 @@ with open(os.path.join(this_directory, 'README.md')) as f:
package_name = "dbt"
package_version = "0.14.2"
package_version = "0.14.4b1"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""