Skip to content

Commit 4c44452

Browse files
committed
πŸ“ƒ docs(version): update changelog
1 parent af4e6f9 commit 4c44452

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
6+
## [0.9.1](https://github.com/sns-sdks/python-twitter/v0.9.1) (2024-03-18)
7+
8+
### Features
9+
10+
- Add new apis for users search, trends.
11+
- Add new fields for User object and Tweet object.
12+
13+
### Fix
14+
15+
- Fix oauth1.0 redirect url parameter.
16+
17+
518
## [0.9.0](https://github.com/sns-sdks/python-twitter/v0.9.0) (2023-11-22)
619

720
### Features

β€Žpytwitter/models/tweet.pyβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
class TweetAttachments(BaseModel):
1717
poll_ids: Optional[List[str]] = field(default=None, repr=False, compare=False)
1818
media_keys: Optional[List[str]] = field(default=None, repr=False, compare=False)
19-
media_source_tweet_id: Optional[List[str]] = field(default=None, repr=False, compare=False)
19+
media_source_tweet_id: Optional[List[str]] = field(
20+
default=None, repr=False, compare=False
21+
)
2022

2123

2224
@dataclass

0 commit comments

Comments
Β (0)