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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
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+
828## [ 0.1.0] - 2022-12-22
929
1030This is the very first version of package.
1131
1232Also this is not stable, so under alpha-test.
1333
14- Thanks for getting this release out! please stay tuned :)
15-
1634### Major changes
1735
1836- Set up files to being python package
1937- Organized direcotries
2038
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 1919project = 'json-as-db'
2020copyright = f'2022-{ datetime .now ().year } , Joonas Yoon'
2121author = 'Joonas'
22- release = '0.1.0 '
22+ release = '0.1.1 '
2323
2424# -- General configuration ---------------------------------------------------
2525# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " json_as_db"
3- version = " 0.1.1b0 "
3+ version = " 0.1.1 "
44description = " Using JSON as very lightweight database"
55readme = " README.md"
66license = " MIT"
Original file line number Diff line number Diff line change 11from .Client import Client
22from .Database import Database
33
4- __version__ = '0.1.0 '
4+ __version__ = '0.1.1 '
55
66__all__ = [
77 "Client" ,
You can’t perform that action at this time.
0 commit comments