Skip to content

Commit 2fe7aa9

Browse files
committed
Docs update
1 parent 24e177a commit 2fe7aa9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ however this might be necessary until version `1.0` is released.
3434

3535
[//]: # (https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md)
3636
* [![stability-beta](https://img.shields.io/badge/stability-beta-33bbff.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#beta) **SQLAlchemy manager:** Implementation is mostly finalised, needs testing in production.
37-
* [![stability-beta](https://img.shields.io/badge/stability-beta-33bbff.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#beta) **Repository / Unit of work:** Implementation is mostly finalised, needs testing in production.
37+
* [![stability-beta](https://img.shields.io/badge/stability-beta-33bbff.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#beta) **Repository:** Implementation is mostly finalised, needs testing in production.
38+
* [![stability-experimental](https://img.shields.io/badge/stability-experimental-orange.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#experimental) **Unit of work:** The implementation is working but limited to repositories using the same engine. Distributed transactions across different engines are not yet supported.
3839

3940
## Installation
4041

docs/manager/session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ with sa_manager.get_session() as session:
1111
session.commit()
1212

1313
# We can also get the `session_class` property of the bind,
14-
# but t
14+
# but this is not recommended.
1515
with sa_manager.get_bind().session_class()() as session:
1616
session.add(o)
1717
session.commit()

0 commit comments

Comments
 (0)