Skip to content

Commit be3aceb

Browse files
committed
Preparation for release 0.1.7
1 parent 3daceeb commit be3aceb

38 files changed

+77
-44
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* Fixed important bug in grep mode
5454
* Added sync mode
5555

56-
0.1.7 (draft)
56+
0.1.7
5757

5858
* Fixed grep bug with pull request 89
5959
* XDG Compliance: moving files to `$XDG_DATA_HOME/kb`, if it exists, and fall back

Diff for: HomebrewFormula/kb.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Kb < Formula
44
desc "Minimalist knowledge base manager"
55
homepage "https://github.com/gnebbia/kb"
66
url "https://github.com/gnebbia/kb.git",
7-
tag: "v0.1.6",
7+
tag: "v0.1.7",
88
revision: "40d361d420baab260e6a57a21f4908f1a8a283ee"
99
license "GPL-3.0-or-later"
1010

Diff for: PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ makedepends=('git')
1313
provides=("kb-git")
1414
conflicts=("python-kb-git" "python-kb" "kb")
1515
source=("git+$url")
16-
md5sums=('SKIP')
16+
md5sums=('')
1717

1818
pkgver() {
1919
cd "$srcdir/${_reponame}"

Diff for: PKGBUILD.stable

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pkgbase='kb'
44
pkgname=('kb')
55
_module='kb-manager'
6-
pkgver='0.1.6'
6+
pkgver='0.1.7'
77
pkgrel=1
88
pkgdesc="A command line minimalist knowledge base manager"
99
url="https://github.com/gnebbia/kb"

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Author: gnc <[email protected]>
1515

1616
Copyright: © 2020, gnc
1717

18-
Date: 2021-03-26
18+
Date: 2022-09-21
1919

20-
Version: 0.1.6
20+
Version: 0.1.7
2121

2222

2323
## Table of Contents

Diff for: docs/CHANGELOG.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,63 @@
33
:Author: gnc <[email protected]>
44
:Copyright: © 2020, gnc.
55
:License: GPLv3 (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
6-
:Date: 2021-03-26
6+
:Date: 2020-08-09
77
:Version: 0.1.1
88

99
## Version History
1010

1111
0.1.1
12+
1213
* Initial release.
14+
1315
0.1.2
16+
1417
* Fixed important bugs of 0.1.1
1518
* Refactored
1619
* Added cross-platform binaries
1720
* Included docker image
1821
* Ready for pypi publishing
22+
1923
0.1.3
24+
2025
* Added support for brew (with brew tap)
2126
* Fixed minor bugs
2227
* Fixed update mode '-e' flag
2328
* Fixed Windows bugs
2429
* Fixed cross-platforms tests
2530
* Improved continuous integration
26-
Draft 0.1.4
31+
32+
0.1.4
33+
2734
* Added body "-b" function in add
2835
* Fixed bugs related to the update function
2936
* Added templates
3037
* Added schema migration logic
3138
* Updated docs with a TOC
3239

40+
0.1.5
41+
42+
* Solved minor bug related to viewing certain escape sequences
43+
* Added strings helping users for some exceptions
44+
* Implemented a faster edit/view functionality by guessing input id/title
45+
* Updated bash shortcuts
46+
* Updated Documentation
47+
48+
0.1.6
49+
50+
* Added full path list mode (kb list -f)
51+
* Added rofi custom mode
52+
* Added grep matches mode (kb grep "string" -m)
53+
* Fixed important bug in grep mode
54+
* Added sync mode
55+
56+
0.1.7
57+
58+
* Fixed grep bug with pull request 89
59+
* XDG Compliance: moving files to `$XDG_DATA_HOME/kb`, if it exists, and fall back
60+
to `$HOME/.local/share/kb` if that environment variable does not exist
61+
* Added kb to pkgsrc
62+
* Added stdin functionality to add artifacts. For example:
63+
`cat ../script.py | python -m kb add -t mycoolscript`
64+
`cat path/to/script.py | python -m kb add -t mycoolscript -c python_scripts`
65+
* Implemented the confirmation mechanism for artifact removal

Diff for: docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Author: gnc <[email protected]>
99

1010
Copyright: © 2020, gnc
1111

12-
Date: 2021-03-26
12+
Date: 2022-09-21
1313

14-
Version: 0.1.6
14+
Version: 0.1.7
1515

1616

1717
## Purpose

Diff for: docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.1.6'
51+
version = '0.1.7'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.1.6'
53+
release = '0.1.7'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

Diff for: kb/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright 2020, Giuseppe Nebbione.
55

@@ -24,7 +24,7 @@
2424
"""
2525

2626
__title__ = 'kb'
27-
__version__ = '0.1.6'
27+
__version__ = '0.1.7'
2828
__author__ = 'gnc'
2929
__license__ = 'GPLv3'
3030
__docformat__ = 'restructuredtext en'

Diff for: kb/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/cl_parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/add.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/delete.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/edit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/erase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/export.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/grep.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/ingest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/sync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/template.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/update.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/commands/view.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/entities/artifact.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/filesystem.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/history.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/initializer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/opener.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/printer/grep.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/printer/search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/printer/style.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/printer/template.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/styler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: kb/viewer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- encoding: utf-8 -*-
2-
# kb v0.1.6
2+
# kb v0.1.7
33
# A knowledge base organizer
44
# Copyright © 2020, gnc.
55
# See /LICENSE for licensing information.

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66

77
setup(name='kb-manager',
8-
version='0.1.6',
8+
version='0.1.7',
99
description='A minimalist knowledge base manager',
1010
keywords='kb',
1111
author='gnc',
1212
author_email='[email protected]',
1313
url='https://github.com/gnebbia/kb',
14-
download_url='https://github.com/gnebbia/kb/archive/v0.1.6.tar.gz',
14+
download_url='https://github.com/gnebbia/kb/archive/v0.1.7.tar.gz',
1515
license='GPLv3',
1616
long_description=io.open(
1717
'./docs/README.md', 'r', encoding='utf-8').read(),

0 commit comments

Comments
 (0)