Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
CrispenGari committed Feb 20, 2024
1 parent e9ae153 commit 4f9202c
Show file tree
Hide file tree
Showing 43 changed files with 571 additions and 464 deletions.
13 changes: 7 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
===
Dataloom **`1.1.0`**
Dataloom **`2.0.0`**
===

### Update Notes - `dataloom`
### Release Notes - `dataloom`

We have release the new `dataloom` Version `1.1.0` (`2024-02-12`)
We have release the new `dataloom` Version `2.0.0` (`2024-02-12`)

##### Features

- Renaming the class `Dataloom` to `Loom`.
- Eager data fetching in relationships

- Now you can fetch your child relationship together in your query
Expand Down Expand Up @@ -118,7 +119,7 @@ posts = pg_loom.find_many(
```

=====
Dataloom **`1.0.2`**
Loom **`1.0.2`**
=====

We have release the new `dataloom` Version `1.0.2` (`2024-02-12`)
Expand All @@ -128,7 +129,7 @@ We have release the new `dataloom` Version `1.0.2` (`2024-02-12`)
We have updated the documentation so that it can look more colorful.

=====
Dataloom **`1.0.1`**
Loom **`1.0.1`**
=====
Change logs for the `dataloom` Version `1.0.1` (`2024-02-12`)

Expand All @@ -138,7 +139,7 @@ Change logs for the `dataloom` Version `1.0.1` (`2024-02-12`)
- **SQL Loggers**: The SQL Loggers can now log `timestamps` not the log index especially for the `console` logger.

=====
Dataloom **`1.0.0`**
Loom **`1.0.0`**
=====

### Release Notes - `dataloom`
Expand Down
432 changes: 283 additions & 149 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dataloom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dataloom.loom import Dataloom
from dataloom.loom import Loom
from dataloom.types import Order, Include, Filter, ColumnValue, Group, Having
from dataloom.model import Model
from dataloom.columns import (
Expand All @@ -20,7 +20,7 @@
ForeignKeyColumn,
UpdatedAtColumn,
Column,
Dataloom,
Loom,
TableColumn,
Model,
Group,
Expand Down
2 changes: 1 addition & 1 deletion dataloom/decorators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def initialize(
Examples
--------
>>> from dataloom import (
... Dataloom,
... Loom,
... Model,
... PrimaryKeyColumn,
... Column,
Expand Down
Loading

0 comments on commit 4f9202c

Please sign in to comment.