Skip to content

Commit

Permalink
bump version and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
amalfra committed Jul 25, 2021
1 parent d54282d commit c911a23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ Docker Hub CLI
A CLI tool to access Docker Hub from your terminal.

## Installation
> Note: Python 3.5+ is required.
You should have pip installed in your system.
```sh
pip install docker-hub
```
Python 3 users can do:
If you have Python 2 also in the system do:
```sh
pip3 install docker-hub
```

> Note: Starting from v3.0 support for python v2 will be dropped.
## Usage
##### 1. Authenticate with Docker Hub
If you are already logged in using `docker login` command, then the token in Docker engine config will be used. Otherwise you can choose to proceed without authenticating which will query docker hub without token and list only public resources. To authenticate for viewing private resources do `docker-hub login` command; this will save auth token in `docker-hub`'s config file so that you don't need to login every time.
Expand Down
2 changes: 1 addition & 1 deletion docker_hub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- encoding: utf-8 -*-
__version__ = "2.2.0"
__version__ = "3.0.0"

0 comments on commit c911a23

Please sign in to comment.