Skip to content

Commit 8b6907a

Browse files
committedOct 8, 2022
Release 0.1.0
1 parent 9272aca commit 8b6907a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# pcontract
22

3-
*WIP*
4-
53
A data structure to track data over time. It works by tracking time/schedule
64
information **rather than tracking data changes** over time.
75

86

97
## Reasoning
108

11-
Let's assume you make a contract with a person (in this example,
9+
Let's assume you make a contract with a person (in this example,
1210
assume it's a lease agreement). In the first draft, the parties agree on
1311
some conditions, and if they are happy, they close the deal.
1412

‎pcontract/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from datetime import datetime, timedelta
77
from typing import Type, cast
88

9-
__version__ = "0.0.1"
9+
__version__ = "0.1.0"
1010
__all__ = ["Branch", "Collection"]
1111

1212

0 commit comments

Comments
 (0)
Please sign in to comment.