Skip to content

Commit 60e10fc

Browse files
committed
version: 0.2.0
1 parent 9ac1e0c commit 60e10fc

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Thanks for getting this release out! please stay tuned :)
1111

12+
## [0.2.0] - 2022-12-26
13+
14+
### Added
15+
16+
- Unit tests for getters.
17+
- `Database` read items from serialized JSON file.
18+
19+
### Changed
20+
21+
- Remove `Client`. use methods on `Database` instead of.
22+
1223
## [0.1.1] - 2022-12-26
1324

1425
### Added
@@ -36,6 +47,7 @@ Also this is not stable, so under alpha-test.
3647
- Set up files to being python package
3748
- Organized direcotries
3849

39-
[Unreleased]: https://github.com/joonas-yoon/json-as-db/compare/v0.1.1...HEAD
50+
[Unreleased]: https://github.com/joonas-yoon/json-as-db/compare/v0.2.0...HEAD
51+
[0.2.0]: https://github.com/joonas-yoon/json-as-db/compare/v0.1.1...v0.2.0
4052
[0.1.1]: https://github.com/joonas-yoon/json-as-db/compare/v0.1.0...v0.1.1
4153
[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.1'
22+
release = '0.2.0'
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.1"
3+
version = "0.2.0"
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,6 +1,6 @@
11
from .Database import Database
22

3-
__version__ = '0.1.1'
3+
__version__ = '0.2.0'
44

55
__all__ = [
66
"Database"

0 commit comments

Comments
 (0)