File tree Expand file tree Collapse file tree 4 files changed +26
-6
lines changed Expand file tree Collapse file tree 4 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,37 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ Unreleased]
9
+
10
+ Thanks for getting this release out! please stay tuned :)
11
+
12
+ ## [ 0.1.1] - 2022-12-26
13
+
14
+ ### Added
15
+
16
+ - Documentation and comments.
17
+ - Implements ` len ` method on ` Database ` .
18
+
19
+ ### Fixed
20
+
21
+ - apply style format based on PEP8
22
+
23
+ ### Changed
24
+
25
+ - Remove async/await keyword from ` Database ` .
26
+ - ` Database.modify() ` returns modified value(s)
27
+
8
28
## [ 0.1.0] - 2022-12-22
9
29
10
30
This is the very first version of package.
11
31
12
32
Also this is not stable, so under alpha-test.
13
33
14
- Thanks for getting this release out! please stay tuned :)
15
-
16
34
### Major changes
17
35
18
36
- Set up files to being python package
19
37
- Organized direcotries
20
38
21
- [ 0.1.0 ] : #
39
+ [ Unreleased ] : https://github.com/joonas-yoon/json-as-db/compare/v0.1.1...HEAD
40
+ [ 0.1.1 ] : https://github.com/joonas-yoon/json-as-db/compare/v0.1.0...v0.1.1
41
+ [ 0.1.0 ] : https://github.com/joonas-yoon/json-as-db/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 19
19
project = 'json-as-db'
20
20
copyright = f'2022-{ datetime .now ().year } , Joonas Yoon'
21
21
author = 'Joonas'
22
- release = '0.1.0 '
22
+ release = '0.1.1 '
23
23
24
24
# -- General configuration ---------------------------------------------------
25
25
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " json_as_db"
3
- version = " 0.1.1b0 "
3
+ version = " 0.1.1 "
4
4
description = " Using JSON as very lightweight database"
5
5
readme = " README.md"
6
6
license = " MIT"
Original file line number Diff line number Diff line change 1
1
from .Client import Client
2
2
from .Database import Database
3
3
4
- __version__ = '0.1.0 '
4
+ __version__ = '0.1.1 '
5
5
6
6
__all__ = [
7
7
"Client" ,
You can’t perform that action at this time.
0 commit comments