New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

doing-cli

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

doing-cli - pypi Package Compare versions

Comparing version
1.5.2
to
1.5.3
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: doing-cli
Version: 1.5.2
Version: 1.5.3
Summary: CLI tool to simplify the development workflow on azure devops

@@ -5,0 +5,0 @@ Home-page: https://github.com/ing-bank/doing-cli

Metadata-Version: 2.1
Name: doing-cli
Version: 1.5.2
Version: 1.5.3
Summary: CLI tool to simplify the development workflow on azure devops

@@ -5,0 +5,0 @@ Home-page: https://github.com/ing-bank/doing-cli

@@ -1,1 +0,1 @@

__version__ = "1.5.2"
__version__ = "1.5.3"

@@ -114,2 +114,10 @@ import click

)
@click.option(
"--add-to-current-sprint/--do-not-add-to-current-sprint",
required=False,
default=False,
type=bool,
help="If the item needs to be added to the current sprint. Defaults to false",
show_envvar=True,
)
def create(

@@ -125,2 +133,3 @@ issue: str,

story_points: str,
add_to_current_sprint,
) -> None:

@@ -140,2 +149,3 @@ """Create an issue.

story_points=story_points,
add_to_current_sprint=add_to_current_sprint,
**get_common_options(),

@@ -142,0 +152,0 @@ )