Skip to content

Commit 5635ce6

Browse files
committed
[no ci] 6.0.1.1
1 parent e540049 commit 5635ce6

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

pynamodb_mate/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "6.0.0.4"
1+
__version__ = "6.0.1.1"
22

33
if __name__ == "__main__": # pragma: no cover
44
print(__version__)

release-history.rst

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ Backlog
1717
**Miscellaneous**
1818

1919

20+
6.0.1.1 (2024-09-13)
21+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22+
**Features and Improvements**
23+
24+
- add :mod:`pynamodb_mate.patterns.relationship_v2`, a new version of the relationship pattern. It is more powerful and flexible than the old version. The API is more clean, easy to use, and you can write way less code to achieve the same goal.
25+
26+
2027
6.0.0.4 (2024-07-19)
2128
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2229
**Minor Improvements**

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pynamodb>=6.0.0,<7.0.0
1+
pynamodb>=6.0.1,<7.0.0
22
cached-property>=1.5.2; python_version < '3.8'
33
iterproxy>=0.3.1,<1.0.0
44
typing-extensions>=4.11.0; python_version < '3.12'

tests/test_api.py

+9
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ def test_api():
7474
_ = pm.patterns.relationship.OneToManyRelationshipType
7575
_ = pm.patterns.relationship.ManyToManyRelationshipType
7676
_ = pm.patterns.relationship.RelationshipSetting
77+
_ = pm.patterns.relationship_v2.BaseLookupIndex
78+
_ = pm.patterns.relationship_v2.BaseEntity
79+
_ = pm.patterns.relationship_v2.T_BASE_ENTITY
80+
_ = pm.patterns.relationship_v2.ROOT
81+
_ = pm.patterns.relationship_v2.ItemType
82+
_ = pm.patterns.relationship_v2.EntityType
83+
_ = pm.patterns.relationship_v2.RelationshipType
84+
_ = pm.patterns.relationship_v2.OneToManyRelationshipType
85+
_ = pm.patterns.relationship_v2.ManyToManyRelationshipType
7786
_ = pm.patterns.status_tracker.TaskExecutionError
7887
_ = pm.patterns.status_tracker.TaskIsNotInitializedError
7988
_ = pm.patterns.status_tracker.TaskIsNotReadyToStartError

0 commit comments

Comments
 (0)