Skip to content

Commit 62a83d1

Browse files
authored
0.1.54 (#270)
* more bumps * even more bumps * bump config * try rc again :) * remove poetry from project
1 parent f936a53 commit 62a83d1

File tree

5 files changed

+11
-24
lines changed

5 files changed

+11
-24
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.48
2+
current_version = 0.1.54
33
commit = True
44
tag = True
55

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.51"
3+
version = "0.1.54"
44
authors = ["Will Eaton <me@wseaton.com>"]
55
edition = "2021"
66

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

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

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
benchmark: build
2-
poetry run pytest tests/benchmark.py
2+
uvx poetry run pytest tests/benchmark.py
33

44
test:
5-
poetry run pytest tests/benchmark.py
5+
uvx poetry run pytest tests/
66

77
build:
8-
poetry build
8+
uvx poetry build

poetry.lock

Lines changed: 0 additions & 7 deletions
This file was deleted.

pyproject.toml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
[tool.poetry]
1+
[project]
22
name = "sqloxide"
3-
version = "0.1.51"
3+
version = "0.1.54rc2"
4+
authors = [{ name = "Will Eaton", email= "<me@wseaton.com>" }]
45
repository = "https://github.com/wseaton/sqloxide"
56
license = "MIT"
67
description = "Python bindings for sqlparser-rs"
7-
authors = ["Will Eaton <me@wseaton.com>"]
8+
requires-python = ">=3.7"
89
classifiers = [
910
"Development Status :: 3 - Alpha",
1011
"Programming Language :: Rust",
@@ -13,12 +14,5 @@ classifiers = [
1314
]
1415

1516
[build-system]
16-
requires = ["maturin>=0.13,<0.14"]
17+
requires = ["maturin>=1.0,<2.0"]
1718
build-backend = "maturin"
18-
19-
[project]
20-
name = "sqloxide"
21-
requires-python = ">=3.7"
22-
classifiers = [
23-
"Programming Language :: Rust",
24-
]

0 commit comments

Comments
 (0)