Skip to content

Commit

Permalink
📃 docs(version): update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MerleLiuKun committed Mar 18, 2024
1 parent af4e6f9 commit 4c44452
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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


## [0.9.1](https://github.com/sns-sdks/python-twitter/v0.9.1) (2024-03-18)

### Features

- Add new apis for users search, trends.
- Add new fields for User object and Tweet object.

### Fix

- Fix oauth1.0 redirect url parameter.


## [0.9.0](https://github.com/sns-sdks/python-twitter/v0.9.0) (2023-11-22)

### Features
Expand Down
4 changes: 3 additions & 1 deletion pytwitter/models/tweet.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
class TweetAttachments(BaseModel):
poll_ids: Optional[List[str]] = field(default=None, repr=False, compare=False)
media_keys: Optional[List[str]] = field(default=None, repr=False, compare=False)
media_source_tweet_id: Optional[List[str]] = field(default=None, repr=False, compare=False)
media_source_tweet_id: Optional[List[str]] = field(
default=None, repr=False, compare=False
)


@dataclass
Expand Down

0 comments on commit 4c44452

Please sign in to comment.