From 325aab9c782bf82eaf984be2f5cb71dbedd39598 Mon Sep 17 00:00:00 2001
From: Arun Prakash Jana
Date: Mon, 20 Feb 2017 19:35:55 +0530
Subject: [PATCH] Prepare for release v2.9.
---
CHANGELOG | 16 ++++++++++++++++
README.md | 3 ++-
buku.1 | 3 ++-
buku.py | 2 +-
4 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
index dfaee014..430ae8a0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,19 @@
+Buku 2.9
+2017-02-20
+
+Modifications
+- New option `-write` to compose and edit bookmarks in text editor
+- Support positional arguments as search keywords
+- New option `--oa` to search and open results directly in browser
+- Autodetect Markdown mode by file extension during export, import
+- Shortened options:
+ - `--nc` replaces `--nocolor`
+ - `--np` replaces `--noprompt`
+ - `-V` replaces `--upstream`
+- Option `--markdown` removed as the mode is autodetected now
+
+-------------------------------------------------------------------------------
+
Buku 2.8
2017-01-11
diff --git a/README.md b/README.md
index 89c9b99f..27e7acbe 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
-
+
`buku` is a powerful bookmark management utility written in Python3 and SQLite3. When I started writing it, I couldn't find a flexible cmdline solution with a private, portable, merge-able database along with browser integration. Hence, `buku` (after my son's nickname).
@@ -418,6 +418,7 @@ The last index is moved to the deleted index to keep the DB compact.
$ buku -d 100 15 200
16. **Search** bookmarks for **ANY** of the keywords `kernel` and `debugging` in URL, title or tags:
+ $ buku kernel debugging
$ buku -s kernel debugging
17. **Search** bookmarks with **ALL** the keywords `kernel` and `debugging` in URL, title or tags:
diff --git a/buku.1 b/buku.1
index d65cfc63..7f06e396 100644
--- a/buku.1
+++ b/buku.1
@@ -1,4 +1,4 @@
-.TH "BUKU" "1" "Jan 2017" "Version 2.8" "User Commands"
+.TH "BUKU" "1" "Feb 2017" "Version 2.9" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager. Your mini web!
.SH SYNOPSIS
@@ -449,6 +449,7 @@ The last index is moved to the deleted index to keep the DB compact.
.PP
.EX
.IP
+.B buku kernel debugging
.B buku -s kernel debugging
.EE
.PP
diff --git a/buku.py b/buku.py
index 9d752d0a..2d35c650 100755
--- a/buku.py
+++ b/buku.py
@@ -37,7 +37,7 @@
from urllib3.util import parse_url, make_headers
import webbrowser
-__version__ = '2.8'
+__version__ = '2.9'
__author__ = 'Arun Prakash Jana '
__license__ = 'GPLv3'