Skip to content

Commit 39ce67d

Browse files
committed
bump version and add version flag
1 parent 553c4ec commit 39ce67d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This tool allows you to manage AWS Console Sessions with Firefox Containers
77
Ensure you've met the [requirements](#requirements).
88

99
```bash
10-
$ pip install aws_coco
10+
$ pip install aws-coco
1111
```
1212

1313
Usage

aws_coco/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def construct_parser():
1515
description="A utility for managing AWS Console Sessions"
1616
)
1717

18+
parser.add_argument('--version', action='version', version='%(prog)s 0.1.3')
19+
1820
parser.add_argument("--profile", "-p", help="The AWS profile to use", default=None)
1921

2022
parser.add_argument(

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
[tool.poetry]
22
name = "aws-coco"
3-
version = "0.1.0"
3+
version = "0.1.3"
44
description = "A utility for managing AWS Console Sessions with Firefox Containers"
55
authors = ["Joe Snell <joepsnell@gmail.com>"]
66
license = "MIT"
7+
readme = "README.md"
8+
homepage = "https://github.com/wulfmann/aws-coco"
9+
documentation = "https://github.com/wulfmann/aws-coco/README.md"
10+
repository = "https://github.com/wulfmann/aws-coco"
11+
keywords = ["aws", "firefox containers", "aws console", "console container"]
712

813
[tool.poetry.dependencies]
914
python = "^3.8"
@@ -19,6 +24,7 @@ coco = "aws_coco.main:run"
1924

2025
[tool.poetry.urls]
2126
issues = "https://github.com/wulfmann/aws-coco/issues"
27+
2228
[build-system]
2329
requires = ["poetry>=0.12"]
2430
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)