Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "Ryx"
version = "0.1.1"
version = "0.1.2"
edition = "2024"
description = "Ryx ORM — a Django-style Python ORM powered by sqlx (Rust) via PyO3"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="logo.svg" alt="Ryx ORM" width="80" height="80" />
<img src="https://github.com/AllDotPy/Ryx/blob/master/logo.svg?raw=true" alt="Ryx ORM" width="80" height="80" />
</p>

<h1 align="center">Ryx ORM</h1>
Expand Down Expand Up @@ -78,7 +78,7 @@ async with ryx.transaction():
## Architecture

<p align="center">
<img src="ryx_architecture.svg" alt="Ryx Architecture" width="100%" />
<img src="https://github.com/AllDotPy/Ryx/blob/master/ryx_architecture.svg?raw=true" alt="Ryx Architecture" width="100%" />
</p>

Your Python queries are compiled to SQL in Rust, executed by sqlx, and decoded back — all without blocking the Python event loop.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-backend = "maturin"

[project]
name = "ryx"
version = "0.1.3"
version = "0.1.4"
description = "A Django-style Python ORM powered by sqlx (Rust) via PyO3."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -50,7 +50,7 @@ dependencies = [

[project.urls]
Homepage = "https://github.com/AllDotPy/Ryx"
Documentation = "https://github.com/AllDotPy/Ryx#readme"
Documentation = "https://ryx.alldotpy.com"
Repository = "https://github.com/AllDotPy/Ryx"
Issues = "https://github.com/AllDotPy/Ryx/issues"

Expand Down
Loading