Skip to content

Commit 5be6f21

Browse files
committed
String enum support, v0.0.9
1 parent 669bd79 commit 5be6f21

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2727

2828
- ...
2929

30+
## [v0.0.9] - 2024-02-28
31+
32+
- Support string enums
33+
3034
## [v0.0.8] - 2024-02-28
3135

3236
- Fixed reading GeoJSON FeatureCollections

fiboa_cli/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"string": pa.string(),
4242
"array": lambda type: pa.list_(type),
4343
"object": None, # todo: lambda type: pa.map_(pa.string(), type)
44-
"enum": None, # todo: ENUM (BYTE_ARRAY)
44+
"enum": pa.string(), # todo: support other data types [ENUM (BYTE_ARRAY)]
4545
"date": pa.date32(),
4646
"date-time": pa.timestamp("ms", tz="UTC"),
4747
"geometry": pa.binary(),

fiboa_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.8"
1+
__version__ = "0.0.9"

0 commit comments

Comments
 (0)