diff --git a/CHANGELOG.md b/CHANGELOG.md index dfcff2d..f8fc200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.11.1 : 2021-12-14 + +- **Change**: Ability to cast to UUID + ## 0.11.0 : 2021-12-10 - **Feature**: More benevolent type nesting diff --git a/duckql/structures/cast_operator.py b/duckql/structures/cast_operator.py index e605e48..18d2e06 100644 --- a/duckql/structures/cast_operator.py +++ b/duckql/structures/cast_operator.py @@ -22,6 +22,7 @@ class DataType(Enum): CHAR = 'char' VARCHAR = 'varchar' TEXT = 'text' + UUID = 'uuid' # Integers SMALLINT = 'smallint' diff --git a/duckql/version.py b/duckql/version.py index f323a57..ae4865c 100644 --- a/duckql/version.py +++ b/duckql/version.py @@ -1 +1 @@ -__version__ = '0.11.0' +__version__ = '0.11.1' diff --git a/pyproject.toml b/pyproject.toml index 5100759..8017ed7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckql-python" -version = "0.11.0" +version = "0.11.1" description = "JSON declarative SQL conversion library" authors = ["Jakub Dubec "] license = "MIT"