Skip to content

Commit 6618768

Browse files
v0.7.0
1 parent 5510ace commit 6618768

34 files changed

Lines changed: 695 additions & 736 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
recursive-include arnelify_orm/cpp *.cpp *.hpp
1+
recursive-include arnelify_orm/src *.cpp *.hpp *.h

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ENGINE = g++
66
ENGINE_FLAGS = -std=c++2b
77

88
# PATH
9-
PATH_BIN = $(CURDIR)/tests/bin/index.bin
9+
PATH_BIN = $(CURDIR)/tests/bin/index
1010
PATH_SRC = $(CURDIR)/tests/index.py
1111

1212
# INC
13-
INC_CPP = -I $(CURDIR)/src/cpp
13+
INC_CPP = -I $(CURDIR)/src/src
1414
INC_INCLUDE = -L /usr/include
1515
INC_JSONCPP = -I /usr/include/jsoncpp/json
1616
INC = ${INC_CPP} ${INC_INCLUDE} ${INC_JSONCPP}

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://static.wikia.nocookie.net/arnelify/images/c/c8/Arnelify-logo-2024.png/revision/latest?cb=20240701012515" style="width:336px;" alt="Arnelify Logo" />
22

3-
![Arnelify ORM for Python](https://img.shields.io/badge/Arnelify%20ORM%20for%20Python-0.6.3-yellow) ![C++](https://img.shields.io/badge/C++-2b-red) ![G++](https://img.shields.io/badge/G++-14.2.0-blue) ![Python](https://img.shields.io/badge/Python-3.11.2-blue) ![Nuitka](https://img.shields.io/badge/Nuitka-2.6.4-blue)
3+
![Arnelify ORM for Python](https://img.shields.io/badge/Arnelify%20ORM%20for%20Python-0.7.0-yellow) ![C++](https://img.shields.io/badge/C++-2b-red) ![G++](https://img.shields.io/badge/G++-14.2.0-blue) ![Python](https://img.shields.io/badge/Python-3.11.2-blue) ![Nuitka](https://img.shields.io/badge/Nuitka-2.6.4-blue)
44

55
## 🚀 About
66
**Arnelify® ORM for Python** - is a minimalistic dynamic library which is an ORM written in C and C++.
@@ -55,15 +55,16 @@ This software is licensed under the <a href="https://github.com/arnelify/arnelif
5555
Join us to help improve this software, fix bugs or implement new functionality. Active participation will help keep the software up-to-date, reliable, and aligned with the needs of its users.
5656

5757
## ⭐ Release Notes
58-
Version 0.6.3 - Minimalistic dynamic library
58+
Version 0.7.0 - Minimalistic dynamic library
5959

6060
We are excited to introduce the Arnelify ORM dynamic library for Python! Please note that this version is raw and still in active development.
6161

6262
Change log:
6363

6464
* Minimalistic dynamic library
6565
* NodeJS (Bun) addon
66-
* FFI Support
66+
* Multi-Threading
67+
* Significant refactoring and optimizations
6768

6869
Please use this version with caution, as it may contain bugs and unfinished features. We are actively working on improving and expanding the ORM's capabilities, and we welcome your feedback and suggestions.
6970

arnelify_orm/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
from .index import ArnelifyORM
1+
from .mysql import MySQL
2+
from .mysql.query.index import MySQLQuery

arnelify_orm/cpp/contracts/opts.hpp

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

arnelify_orm/cpp/contracts/res.hpp

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

arnelify_orm/cpp/mariadb/contracts/logger.hpp

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

arnelify_orm/cpp/mariadb/contracts/res.hpp

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

arnelify_orm/cpp/mariadb/index.cpp

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

arnelify_orm/cpp/mysql/contracts/logger.hpp

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

0 commit comments

Comments
 (0)