Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fishtown-analytics/dbt into dev/g…
Browse files Browse the repository at this point in the history
…uion-bluford
  • Loading branch information
cmcarthur committed Sep 19, 2018
2 parents 2a8f0b8 + ea974fd commit f588876
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 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 = 0.11.1a1
current_version = 0.11.1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## Lucretia Mott (Unreleased)
## dbt 0.11.1 - Lucretia Mott (September 18, 2018)

### Overview

This is a patch release containing a few bugfixes and one quality of life change for dbt docs.

### Features

Expand All @@ -10,9 +14,14 @@
- dbt
- Fix hooks in model configs not running ([#985](https://github.com/fishtown-analytics/dbt/pull/985))
- Fix integration test on redshift catalog generation ([#977](https://github.com/fishtown-analytics/dbt/pull/977))
- Snowflake: Fix docs generation errors when QUOTED_IDENTIFIER_IGNORE_CASE is set ([#998](https://github.com/fishtown-analytics/dbt/pull/998))
- Translate empty strings to null in seeds ([#995](https://github.com/fishtown-analytics/dbt/pull/995))
- Filter out null schemas during catalog generation ([#992](https://github.com/fishtown-analytics/dbt/pull/992))
- Fix quoting on drop, truncate, and rename ([#991](https://github.com/fishtown-analytics/dbt/pull/991))
- dbt-docs
- Fix for non-existent column in schema.yml ([#3](https://github.com/fishtown-analytics/dbt-docs/pull/3))
- Fixes for missing tests in docs UI when columns are upcased ([#2](https://github.com/fishtown-analytics/dbt-docs/pull/2))
- Fix "copy to clipboard" ([#4](https://github.com/fishtown-analytics/dbt-docs/issues/4))

## dbt 0.11.0 - Isaac Asimov (September 6, 2018)

Expand Down
2 changes: 1 addition & 1 deletion dbt/include/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ def get_version_information():
.format(version_msg))


__version__ = '0.11.1a1'
__version__ = '0.11.1'
installed = get_installed_version()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

package_name = "dbt"
package_version = "0.11.1a1"
package_version = "0.11.1"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""

Expand Down

0 comments on commit f588876

Please sign in to comment.