Prepare for release v3.6
This commit is contained in:
parent
1d8b80ffa5
commit
076cd02c98
11
CHANGELOG
11
CHANGELOG
@ -1,3 +1,14 @@
|
||||
Buku 3.6
|
||||
2018-01-01
|
||||
|
||||
What's in?
|
||||
- Skip bookmark addition if edit is aborted
|
||||
- Use urllib3 for handling http connections everywhere
|
||||
- Fix auto-import on FreeBSD
|
||||
- Generate package for openSUSE Leap 42.3
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Buku 3.5
|
||||
2017-11-10
|
||||
|
||||
|
@ -439,7 +439,7 @@ You may encounter issues with GUI editors which maintain only one instance by de
|
||||
- [SZ Lin](https://github.com/szlin)
|
||||
- [Alex Gontar](https://github.com/mosegontar)
|
||||
|
||||
Copyright © 2015-2017 [Arun Prakash Jana](mailto:engineerarun@gmail.com)
|
||||
Copyright © 2015-2018 [Arun Prakash Jana](mailto:engineerarun@gmail.com)
|
||||
<br>
|
||||
<p><a href="https://gitter.im/jarun/Buku"><img src="https://img.shields.io/gitter/room/jarun/buku.svg?maxAge=2592000" alt="gitter chat" /></a></p>
|
||||
|
||||
|
4
buku.1
4
buku.1
@ -1,4 +1,4 @@
|
||||
.TH "BUKU" "1" "10 Nov 2017" "Version 3.5" "User Commands"
|
||||
.TH "BUKU" "1" "01 Jan 2018" "Version 3.6" "User Commands"
|
||||
.SH NAME
|
||||
buku \- Powerful command-line bookmark manager.
|
||||
.SH SYNOPSIS
|
||||
@ -790,7 +790,7 @@ Arun Prakash Jana <engineerarun@gmail.com>
|
||||
.SH REPORTING BUGS
|
||||
.I https://github.com/jarun/Buku/issues
|
||||
.SH LICENSE
|
||||
Copyright \(co 2015-2017 Arun Prakash Jana <engineerarun@gmail.com>.
|
||||
Copyright \(co 2015-2018 Arun Prakash Jana <engineerarun@gmail.com>.
|
||||
.PP
|
||||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
|
||||
.br
|
||||
|
6
buku.py
6
buku.py
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Bookmark management utility
|
||||
#
|
||||
# Copyright © 2015-2017 Arun Prakash Jana <engineerarun@gmail.com>
|
||||
# Copyright © 2015-2018 Arun Prakash Jana <engineerarun@gmail.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
@ -39,7 +39,7 @@ from urllib3.exceptions import LocationParseError
|
||||
from urllib3.util import parse_url, make_headers
|
||||
import webbrowser
|
||||
|
||||
__version__ = '3.5'
|
||||
__version__ = '3.6'
|
||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
@ -2384,7 +2384,7 @@ SYMBOLS:
|
||||
# tags
|
||||
|
||||
Version %s
|
||||
Copyright © 2015-2017 %s
|
||||
Copyright © 2015-2018 %s
|
||||
License: %s
|
||||
Webpage: https://github.com/jarun/Buku
|
||||
''' % (__version__, __author__, __license__))
|
||||
|
@ -53,7 +53,7 @@ master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = 'Buku'
|
||||
copyright = '2017, Arun Prakash Jana'
|
||||
copyright = '2018, Arun Prakash Jana'
|
||||
author = 'Arun Prakash Jana'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
|
Loading…
Reference in New Issue
Block a user