diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index c6544d8..0caa50c 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install build + pip install poetry - name: Build package - run: python -m build + run: python -m poetry build diff --git a/CHANGELOG.md b/CHANGELOG.md index ac35926..e662bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [1.3.0](https://github.com/brooklyn-data/dbtenv/compare/v1.2.0...v1.3.0) - 2021-12-04 + +### Added +- Support for dbt 1.0.0. + +### Changed +- Use Poetry for local development and builds. ## [1.2.0](https://github.com/brooklyn-data/dbtenv/compare/v1.1.1...v1.2.0) - 2021-11-29 diff --git a/pyproject.toml b/pyproject.toml index e672f71..6917e56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbtenv" -version = "1.2.0" +version = "1.3.0" description = "dbtenv lets you easily install and run multiple versions of dbt using pip with Python virtual environments, or optionally using Homebrew on Mac or Linux." authors = ["Brooklyn Data Co. "] keywords = ["dbt"]