summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2017-04-26 10:18:36 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2017-04-26 10:27:00 +0530
commitdd06f2acf6f9746b8bf42b2336a1dfb1ac86690e (patch)
tree6b55a2e85715d3d58c6277b8b4f24932da39a24c
parent86b85dfb3215f0b85cbe0d28c2f7b7fd9f3ed4ee (diff)
Prepare for v3.0v3.0
-rw-r--r--CHANGELOG22
-rw-r--r--buku.12
-rwxr-xr-xbuku.py2
3 files changed, 24 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 046169f..90f026f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,25 @@
+Buku 3.0
+2017-04-26
+
+What's in?
+- Edit bookmarks in EDITOR at prompt
+- Import folder names as tags from browser html (thanks @mohammadKhalifa)
+- Append, overwrite, delete tags at prompt using >>, >, << (familiar, eh? ;))
+- Negative indices with `--print` (like `tail`)
+- Update in EDITOR along with `--immutable`
+- Request HTTP HEAD for immutable records
+- Interface revamp (title on top in bold, colour changes...)
+- Per-level colourful logs in colour mode
+- Changes in program OPTIONS
+ - `-t` stands for tag search (earlier `--title`)
+ - `-r` stands for regex search (earlier `--replace`)
+- Lots of new automated test cases (thanks @rachmadaniHaryono)
+- REST APIs for server-side apps (thanks @kishore-narendran)
+- Document, notify behaviour when not invoked from tty (thanks @The-Compiler)
+- Fix Firefox tab-opening issues on Windows (thanks @dertuxmalwieder)
+
+-------------------------------------------------------------------------------
+
Buku 2.9
2017-02-20
diff --git a/buku.1 b/buku.1
index dc6d390..0c43d2e 100644
--- a/buku.1
+++ b/buku.1
@@ -1,4 +1,4 @@
-.TH "BUKU" "1" "Feb 2017" "Version 2.9" "User Commands"
+.TH "BUKU" "1" "Apr 2017" "Version 3.0" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager. Your mini web!
.SH SYNOPSIS
diff --git a/buku.py b/buku.py
index fb2e59a..ecf4276 100755
--- a/buku.py
+++ b/buku.py
@@ -37,7 +37,7 @@ import urllib3
from urllib3.util import parse_url, make_headers
import webbrowser
-__version__ = '2.9'
+__version__ = '3.0'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3'