From d4ea63443f1f962eb89dd5fd40319f687e50a982 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 15 Nov 2021 19:36:00 +0000 Subject: [PATCH 1/4] =?UTF-8?q?Bump=20version:=200.0.7=20=E2=86=92=200.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7310f44..7b25f16 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 commit = True tag = True diff --git a/setup.py b/setup.py index 4e526e9..c6a6cfe 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name="github-deploy", - version="0.0.7", + version="0.0.8", description="Deploy yaml files to a large number of repositories in seconds.", long_description=LONG_DESCRIPTION, long_description_content_type=LONG_DESCRIPTION_TYPE, From df0b0543ebf9e96f14340986cdb52214a0f123d1 Mon Sep 17 00:00:00 2001 From: jackton1 Date: Mon, 15 Nov 2021 19:36:16 +0000 Subject: [PATCH 2/4] =?UTF-8?q?Upgraded=20from=200.0.7=20=E2=86=92=200.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index edbddcf..8693d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.0.8](https://github.com/tj-python/github-deploy/tree/0.0.8) (2021-11-15) + +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.7...0.0.8) + +## [0.0.7](https://github.com/tj-python/github-deploy/tree/0.0.7) (2021-11-15) + +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.6...0.0.7) + +## [0.0.6](https://github.com/tj-python/github-deploy/tree/0.0.6) (2021-11-15) + +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.5...0.0.6) + +## [0.0.5](https://github.com/tj-python/github-deploy/tree/0.0.5) (2021-11-15) + +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.4...0.0.5) + +**Merged pull requests:** + +- Upgraded 0.0.3 → 0.0.4 [\#5](https://github.com/tj-python/github-deploy/pull/5) ([jackton1](https://github.com/jackton1)) + ## [0.0.4](https://github.com/tj-python/github-deploy/tree/0.0.4) (2021-07-30) [Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.3...0.0.4) From ce2a26a1b7d2e9ed7d7db948ae1fd0a098ea88af Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 11 Feb 2022 18:38:46 -0500 Subject: [PATCH 3/4] Updated click options --- github_deploy/commands/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_deploy/commands/upload.py b/github_deploy/commands/upload.py index 00ff12f..47d453c 100644 --- a/github_deploy/commands/upload.py +++ b/github_deploy/commands/upload.py @@ -246,7 +246,7 @@ async def main(org, token, source, dest, overwrite, private): ) ) click.echo(click.style(deploy_msg, fg="blue")) - c = click.prompt(click.style("Continue? [Yn] ", fg="blue")) + c = click.prompt(click.style("Continue? [YN] ", fg="blue")) if c.lower() == "y": click.echo(click.style("Uploading...", blink=True, fg="green")) From bfe26a3bca9062b01ddd2b0b922815c1cec5aeff Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 11 Feb 2022 18:39:26 -0500 Subject: [PATCH 4/4] Update delete.py --- github_deploy/commands/delete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_deploy/commands/delete.py b/github_deploy/commands/delete.py index 053548b..f85c9c0 100644 --- a/github_deploy/commands/delete.py +++ b/github_deploy/commands/delete.py @@ -185,7 +185,7 @@ async def main(org, token, dest): click.echo(click.style('Deleting "{path}" for all repositories:'.format(path=dest), fg="blue")) click.echo("\n".join(repos)) - c = click.prompt(click.style("Continue? [Yn] ", fg="blue")) + c = click.prompt(click.style("Continue? [YN] ", fg="blue")) if c.lower() == "y": click.echo(click.style("Deleting...", blink=True, fg="green"))