Skip to content

Commit cf6f715

Browse files
committed
UUID cast
1 parent 0d8ec18 commit cf6f715

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.11.1 : 2021-12-14
4+
5+
- **Change**: Ability to cast to UUID
6+
37
## 0.11.0 : 2021-12-10
48

59
- **Feature**: More benevolent type nesting

duckql/structures/cast_operator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class DataType(Enum):
2222
CHAR = 'char'
2323
VARCHAR = 'varchar'
2424
TEXT = 'text'
25+
UUID = 'uuid'
2526

2627
# Integers
2728
SMALLINT = 'smallint'

duckql/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.11.0'
1+
__version__ = '0.11.1'

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 = "duckql-python"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
description = "JSON declarative SQL conversion library"
55
authors = ["Jakub Dubec <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)