Skip to content

Commit f7f59f1

Browse files
authored
Merge pull request #13 from jowilf/release/0.2.0
Release 0.2.0
2 parents 29e1a01 + c015976 commit f7f59f1

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0] - 2022-09-14
9+
10+
---
11+
12+
### Added
13+
14+
* Date & Time input now use Flatpickr by @jowilf in https://github.com/jowilf/starlette-admin/pull/10
15+
16+
**Full Changelog**: https://github.com/jowilf/starlette-admin/compare/0.1.1...0.2.0
17+
18+
819
## [0.1.1] - 2022-09-09
920

1021
---

docs/changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0] - 2022-09-14
9+
10+
---
11+
12+
### Added
13+
14+
* Date & Time input now use Flatpickr in [#10](https://github.com/jowilf/starlette-admin/pull/10)
15+
16+
817
## [0.1.1] - 2022-09-09
918

1019
---

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "starlette-admin"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Simple and extensible admin interface framework for Starlette/FastApi"
55
authors = ["Jocelin Hounon <hounonj@gmail.com>"]
66
license = "MIT"

starlette_admin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.2.0"
22

33
from starlette_admin.base import BaseAdmin
44
from starlette_admin.fields import *

0 commit comments

Comments
 (0)