Skip to content

Commit

Permalink
version: 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joonas-yoon committed Dec 25, 2022
1 parent 690eae3 commit 4eee207
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
26 changes: 23 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,37 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

## [0.1.1] - 2022-12-26

### Added

- Documentation and comments.
- Implements `len` method on `Database`.

### Fixed

- apply style format based on PEP8

### Changed

- Remove async/await keyword from `Database`.
- `Database.modify()` returns modified value(s)

## [0.1.0] - 2022-12-22

This is the very first version of package.

Also this is not stable, so under alpha-test.

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

### Major changes

- Set up files to being python package
- Organized direcotries

[0.1.0]: #
[Unreleased]: https://github.com/joonas-yoon/json-as-db/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/joonas-yoon/json-as-db/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/joonas-yoon/json-as-db/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
project = 'json-as-db'
copyright = f'2022-{datetime.now().year}, Joonas Yoon'
author = 'Joonas'
release = '0.1.0'
release = '0.1.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "json_as_db"
version = "0.1.1b0"
version = "0.1.1"
description = "Using JSON as very lightweight database"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/json_as_db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .Client import Client
from .Database import Database

__version__ = '0.1.0'
__version__ = '0.1.1'

__all__ = [
"Client",
Expand Down

0 comments on commit 4eee207

Please sign in to comment.