Skip to content

Commit cf102d8

Browse files
authored
Merge pull request #11 from getindata/release-0.1.2
Release 0.1.2
2 parents c2b7fcf + 0d25ac8 commit cf102d8

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.1.2] - 2021-12-02
6+
7+
- Fix: do not use styled `click.secho` for Docker push response, as it may not be a `str`
8+
59
## [0.1.1] - 2021-12-01
610

711
- Fix Docker SDK for Python's bug related to tagging, which prevented Docker from pushing images.
@@ -13,7 +17,9 @@
1317
- Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt`
1418
- Draft of `dp compile` and `dp deploy`
1519

16-
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.1.1...HEAD
20+
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.1.2...HEAD
21+
22+
[0.1.2]: https://github.com/getindata/data-pipelines-cli/compare/0.1.1...0.1.2
1723

1824
[0.1.1]: https://github.com/getindata/data-pipelines-cli/compare/0.1.0...0.1.1
1925

data_pipelines_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.1.1"
1+
version = "0.1.2"

data_pipelines_cli/cli_commands/deploy.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
import click
66

77
from ..cli_constants import BUILD_DIR, GS_BUCKET_ENV
8-
from ..cli_utils import (
9-
echo_error,
10-
echo_info,
11-
echo_subinfo,
12-
get_argument_or_environment_variable,
13-
)
8+
from ..cli_utils import echo_error, echo_info, get_argument_or_environment_variable
149
from ..data_structures import DockerArgs
1510

1611

@@ -30,7 +25,7 @@ def _docker_push(docker_args: DockerArgs):
3025
tag=docker_args.commit_sha,
3126
stream=True,
3227
):
33-
echo_subinfo(line)
28+
click.echo(line, nl=False)
3429

3530

3631
def _datahub_ingest():

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.1.1
2+
current_version = 0.1.2
33

44
[bumpversion:file:setup.py]
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name="data_pipelines_cli",
30-
version="0.1.1",
30+
version="0.1.2",
3131
description="CLI for data platform",
3232
long_description=README,
3333
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)