Skip to content

Commit

Permalink
bump to v0.1.36
Browse files Browse the repository at this point in the history
  • Loading branch information
wseaton committed Jul 20, 2023
1 parent fb92579 commit 3723bcc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.35
current_version = 0.1.36
commit = True
tag = True

Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@

# 0.1.36

- Upgrade to sqlparser-rs 0.36.0
- Add more visitor functions
- `mutate_relations`
- `mutate_expressions`
- `extract_expressions`
- add `restore_ast`
- remove ability for library to internally panic via `.expect()`, now throws only `ValueError`

# 0.1.35

- Added `extract_relations` function to assist in extracting table references from the AST in Rust.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqloxide"
version = "0.1.35"
version = "0.1.36"
authors = ["Will Eaton <me@wseaton.com>"]
edition = "2018"

Expand All @@ -17,5 +17,5 @@ version = "0.19.1"
features = ["extension-module"]

[dependencies.sqlparser]
version = "0.35.0"
version = "0.36.0"
features = ["serde", "visitor"]
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 = "sqloxide"
version = "0.1.35"
version = "0.1.36"
repository = "https://github.com/wseaton/sqloxide"
license = "MIT"
description = "Python bindings for sqlparser-rs"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup_kwargs = {
"name": "sqloxide",
"version": "0.1.35",
"version": "0.1.36",
"description": "Python bindings for sqlparser-rs",
"long_description": open("readme.md").read(),
"long_description_content_type": "text/markdown",
Expand Down

0 comments on commit 3723bcc

Please sign in to comment.