Skip to content

Commit

Permalink
UUID cast
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibyx committed Dec 14, 2021
1 parent 0d8ec18 commit cf6f715
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions duckql/structures/cast_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class DataType(Enum):
CHAR = 'char'
VARCHAR = 'varchar'
TEXT = 'text'
UUID = 'uuid'

# Integers
SMALLINT = 'smallint'
Expand Down
2 changes: 1 addition & 1 deletion duckql/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.11.0'
__version__ = '0.11.1'
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 = "duckql-python"
version = "0.11.0"
version = "0.11.1"
description = "JSON declarative SQL conversion library"
authors = ["Jakub Dubec <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit cf6f715

Please sign in to comment.