Skip to content

Commit 5f6abc2

Browse files
authored
Merge pull request #62 from getindata/release-0.15.2
Release 0.15.2
2 parents 4ea0258 + 46d4248 commit 5f6abc2

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.15.2] - 2022-02-28
6+
7+
### Changed
8+
9+
- Bumped `dbt` to 1.0.3.
10+
511
## [0.15.1] - 2022-02-28
612

713
### Fixed
@@ -162,7 +168,9 @@
162168
- Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt`
163169
- Draft of `dp compile` and `dp deploy`
164170

165-
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.15.1...HEAD
171+
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.15.2...HEAD
172+
173+
[0.15.2]: https://github.com/getindata/data-pipelines-cli/compare/0.15.1...0.15.2
166174

167175
[0.15.1]: https://github.com/getindata/data-pipelines-cli/compare/0.15.0...0.15.1
168176

data_pipelines_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
pipelines.
66
"""
77

8-
version = "0.15.1"
8+
version = "0.15.2"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.15.1
2+
current_version = 0.15.2
33

44
[bumpversion:file:setup.py]
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
INSTALL_REQUIREMENTS = [
99
"MarkupSafe==2.0.1", # https://markupsafe.palletsprojects.com/en/2.1.x/changes/#version-2-1-0
10-
"dbt-core==1.0.2",
10+
"dbt-core>=1.0.2",
1111
"click>=8.0.3,<9.0",
1212
"questionary==1.10.0",
1313
"pyyaml>=5.1, <6.0",
@@ -55,7 +55,7 @@
5555

5656
setup(
5757
name="data_pipelines_cli",
58-
version="0.15.1",
58+
version="0.15.2",
5959
description="CLI for data platform",
6060
long_description=README,
6161
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)