Skip to content

Commit 4eee207

Browse files
committed
version: 0.1.1
1 parent 690eae3 commit 4eee207

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,37 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

1030
This is the very first version of package.
1131

1232
Also 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

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = 'json-as-db'
2020
copyright = f'2022-{datetime.now().year}, Joonas Yoon'
2121
author = '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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "json_as_db"
3-
version = "0.1.1b0"
3+
version = "0.1.1"
44
description = "Using JSON as very lightweight database"
55
readme = "README.md"
66
license = "MIT"

src/json_as_db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .Client import Client
22
from .Database import Database
33

4-
__version__ = '0.1.0'
4+
__version__ = '0.1.1'
55

66
__all__ = [
77
"Client",

0 commit comments

Comments
 (0)