Skip to content

Commit 9c4d86c

Browse files
authored
docs: Add changelog entry and adjust client docs (#224)
1 parent d4fa51d commit 9c4d86c

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

clients/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.0.12
4+
5+
### Features
6+
7+
- feat: Add time_creation as first-class metadata (#210) by @lcian
8+
- feat(clients): Append to the given base URL path (#222) by @lcian
9+
- feat: Add time_expires as first-class metadata (#217) by @lcian
10+
311
## 0.0.11
412

513
### Various fixes & improvements

clients/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ session = client.session(
5555
# Write an object and metadata
5656
object_key = session.put(
5757
b"Hello, world!",
58-
# You can pass in your own identifier for the object to decide where to store the file.
59-
# Otherwise, Objectstore will pick an identifier and return it.
60-
# A put request to an existing identifier overwrites the contents and metadata.
61-
# id="hello",
58+
# You can pass in your own key for the object to decide where to store the file.
59+
# Otherwise, Objectstore will pick a key and return it.
60+
# A put request to an existing key overwrites the contents and metadata.
61+
# key="hello",
6262
metadata={"key": "value"},
6363
# Overrides the default defined at the Usecase level
6464
expiration_policy=TimeToIdle(datetime.timedelta(days=30)),

0 commit comments

Comments
 (0)