Skip to content

Commit 3723bcc

Browse files
committed
bump to v0.1.36
1 parent fb92579 commit 3723bcc

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.35
2+
current_version = 0.1.36
33
commit = True
44
tag = True
55

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2+
# 0.1.36
3+
4+
- Upgrade to sqlparser-rs 0.36.0
5+
- Add more visitor functions
6+
- `mutate_relations`
7+
- `mutate_expressions`
8+
- `extract_expressions`
9+
- add `restore_ast`
10+
- remove ability for library to internally panic via `.expect()`, now throws only `ValueError`
11+
112
# 0.1.35
213

314
- Added `extract_relations` function to assist in extracting table references from the AST in Rust.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqloxide"
3-
version = "0.1.35"
3+
version = "0.1.36"
44
authors = ["Will Eaton <me@wseaton.com>"]
55
edition = "2018"
66

@@ -17,5 +17,5 @@ version = "0.19.1"
1717
features = ["extension-module"]
1818

1919
[dependencies.sqlparser]
20-
version = "0.35.0"
20+
version = "0.36.0"
2121
features = ["serde", "visitor"]

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 = "sqloxide"
3-
version = "0.1.35"
3+
version = "0.1.36"
44
repository = "https://github.com/wseaton/sqloxide"
55
license = "MIT"
66
description = "Python bindings for sqlparser-rs"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup_kwargs = {
99
"name": "sqloxide",
10-
"version": "0.1.35",
10+
"version": "0.1.36",
1111
"description": "Python bindings for sqlparser-rs",
1212
"long_description": open("readme.md").read(),
1313
"long_description_content_type": "text/markdown",

0 commit comments

Comments
 (0)