Skip to content

Commit 6f1f91e

Browse files
committed
Updated version for Pypi release
Updated version number for release on pypi with the colored bug fixed.
1 parent 862a1ab commit 6f1f91e

File tree

24 files changed

+33
-27
lines changed

24 files changed

+33
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,7 @@
6363
`cat ../script.py | python -m kb add -t mycoolscript`
6464
`cat path/to/script.py | python -m kb add -t mycoolscript -c python_scripts`
6565
* Implemented the confirmation mechanism for artifact removal
66+
67+
0.1.8
68+
69+
* Fixed bug with colored module

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Author: gnc <[email protected]>
1212

1313
Copyright: © 2020, gnc
1414

15-
Date: 2022-09-21
15+
Date: 2025-06-22
1616

17-
Version: 0.1.7
17+
Version: 0.1.8
1818

1919

2020
## Table of Contents

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:Author: gnc <[email protected]>
44
:Copyright: © 2020, gnc.
55
:License: GPLv3 (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
6-
:Date: 2020-08-09
6+
:Date: 2025-06-22
77
:Version: 0.1.1
88

99
## Version History

docs/README.md

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

1010
Copyright: © 2020, gnc
1111

12-
Date: 2022-09-21
12+
Date: 2025-06-22
1313

14-
Version: 0.1.7
14+
Version: 0.1.8
1515

1616

1717
## Purpose

docs/conf.py

Lines changed: 2 additions & 2 deletions
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.7'
51+
version = '0.1.8'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.1.7'
53+
release = '0.1.8'
5454

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

kb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525

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

kb/commands/add.py

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

kb/commands/delete.py

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

kb/commands/edit.py

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

kb/commands/erase.py

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

0 commit comments

Comments
 (0)