Prepare for release v3.3.1.

This commit is contained in:
Arun Prakash Jana 2017-09-11 08:26:11 +05:30
parent 4dfdff3ea5
commit 07f5ab4aa9
No known key found for this signature in database
GPG Key ID: A75979F35C080412
5 changed files with 16 additions and 6 deletions

View File

@ -1,3 +1,13 @@
Buku 3.3.1
2017-09-11
This is for all purposes the same as v3.3. We had to re-upload a new version to
PyPi and hence the new tag. Functionality remains the same.
The tagline is changed to - `Powerful command-line bookmark manager.`
-------------------------------------------------------------------------------
Buku 3.3
2017-09-11

View File

@ -138,7 +138,7 @@ Shell completion scripts for Bash, Fish and Zsh can be found in respective subdi
```
usage: buku [OPTIONS] [KEYWORD [KEYWORD ...]]
Powerful command-line bookmark manager. Your mini web!
Powerful command-line bookmark manager.
POSITIONAL ARGUMENTS:
KEYWORD search keywords

4
buku.1
View File

@ -1,6 +1,6 @@
.TH "BUKU" "1" "Sep 2017" "Version 3.3" "User Commands"
.TH "BUKU" "1" "Sep 2017" "Version 3.3.1" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager. Your mini web!
buku \- Powerful command-line bookmark manager.
.SH SYNOPSIS
.B buku [OPTIONS] [KEYWORD [KEYWORD ...]]
.SH DESCRIPTION

View File

@ -39,7 +39,7 @@ import urllib3
from urllib3.util import parse_url, make_headers
import webbrowser
__version__ = '3.3'
__version__ = '3.3.1'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3'
@ -3738,7 +3738,7 @@ def main():
# Setup custom argument parser
argparser = ExtendedArgumentParser(
description='''Powerful command-line bookmark manager. Your mini web!
description='''Powerful command-line bookmark manager.
POSITIONAL ARGUMENTS:
KEYWORD search keywords''',

View File

@ -23,7 +23,7 @@ tests_require = [
setup(
name='buku',
version=version,
description='Powerful command-line bookmark manager. Your mini web!',
description='Powerful command-line bookmark manager.',
long_description=long_description,
author='Arun Prakash Jana',
author_email='engineerarun@gmail.com',