Skip to content

Commit

Permalink
Release pass-audit 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roddhjav committed Feb 1, 2019
1 parent 44d6851 commit 17dbd26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,19 @@ sudo make install # For OSX: make install PREFIX=/usr/local

**Stable version**
```sh
wget https://github.com/roddhjav/pass-audit/releases/download/v0.1/pass-audit-0.1.tar.gz
tar xzf pass-audit-0.1.tar.gz
cd pass-audit-0.1
wget https://github.com/roddhjav/pass-audit/releases/download/v1.0/pass-audit-1.0.tar.gz
tar xzf pass-audit-1.0.tar.gz
cd pass-audit-1.0
make
sudo make install # For OSX: make install PREFIX=/usr/local
```

[Releases][releases] and commits are signed using [`06A26D531D56C42D66805049C5469996F0DF68EC`][keys].
You should check the key's fingerprint and verify the signature:
```sh
wget https://github.com/roddhjav/pass-audit/releases/download/v0.1/pass-audit-0.1.tar.gz.asc
wget https://github.com/roddhjav/pass-audit/releases/download/v1.0/pass-audit-1.0.tar.gz.asc
gpg --recv-keys 06A26D531D56C42D66805049C5469996F0DF68EC
gpg --verify pass-audit-0.1.tar.gz.asc
gpg --verify pass-audit-1.0.tar.gz.asc
```

**Local install**
Expand Down
2 changes: 1 addition & 1 deletion pass_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import argparse
from subprocess import Popen, PIPE

__version__ = '0.1'
__version__ = '1.0'


class PasswordStoreError(Exception):
Expand Down

0 comments on commit 17dbd26

Please sign in to comment.