Skip to content

Commit b3e9754

Browse files
authored
chore(repo): release v0.4.0 (#62)
1 parent d14ccba commit b3e9754

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

docs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ dependencies:
77
flutter:
88
sdk: flutter
99
flutter_state_notifier: ^1.0.0
10-
stream_feeds: ^0.3.1
10+
stream_feeds: ^0.4.0

melos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ command:
4747
rxdart: ^0.28.0
4848
shared_preferences: ^2.5.3
4949
state_notifier: ^1.0.0
50-
stream_feeds: ^0.3.1
50+
stream_feeds: ^0.4.0
5151
stream_core: ^0.3.0
5252
video_player: ^2.10.0
5353
uuid: ^4.5.1

packages/stream_feeds/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
## unreleased
1+
## 0.4.0
22
- [BREAKING] Change `queryFollowSuggestions` return type to `List<FeedSuggestionData>`.
33
- [BREAKING] Remove `activitySelectorOptions` from `FeedQuery`.
44
- Add `activityFeedback` method to `Feed` and `Activity` for submitting activity feedback.
55
- Add `hidden` and `preview` fields to `ActivityData`.
66
- Update follower and following counts on the feed state when receiving follow websocket events.
77
- Fix FeedsReactionData id for updating reactions in the feed state.
88
- Improvement for stories and minor updates to other AggregatedActivity state updates.
9+
- Export all the State classes and Queries used in the SDK.
910

1011
## 0.3.1
1112
- Update API client with renaming `addReaction` to `addActivityReaction` and `deleteReaction` to `deleteActivityReaction`.

packages/stream_feeds/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
flutter_state_notifier: ^1.0.0
14-
stream_feeds: ^0.3.1
14+
stream_feeds: ^0.4.0
1515

1616
dev_dependencies:
1717
flutter_test:

packages/stream_feeds/lib/src/state.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export 'state/activity.dart';
22
export 'state/activity_comment_list.dart';
3+
export 'state/activity_comment_list_state.dart';
34
export 'state/activity_list.dart';
45
export 'state/activity_list_state.dart';
56
export 'state/activity_state.dart';
@@ -10,7 +11,9 @@ export 'state/bookmark_list_state.dart';
1011
export 'state/comment_list.dart';
1112
export 'state/comment_list_state.dart';
1213
export 'state/comment_reaction_list.dart';
14+
export 'state/comment_reaction_list_state.dart';
1315
export 'state/comment_reply_list.dart';
16+
export 'state/comment_reply_list_state.dart';
1417
export 'state/feed.dart';
1518
export 'state/feed_list.dart';
1619
export 'state/feed_list_state.dart';

packages/stream_feeds/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_feeds
22
description: The official Dart client for Stream Feeds, a service for building applications with activity feeds.
3-
version: 0.3.1
3+
version: 0.4.0
44
repository: https://github.com/GetStream/stream-feeds-flutter
55

66
# Note: The environment configuration and dependency versions are managed by Melos.

sample_app/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: sample_app
22
description: "A demo app for the Stream Feeds SDK"
33
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
44

5-
version: 0.3.1
5+
version: 0.4.0
66

77
environment:
88
sdk: ^3.6.2
@@ -29,7 +29,7 @@ dependencies:
2929
json_annotation: ^4.9.0
3030
photo_view: ^0.15.0
3131
shared_preferences: ^2.5.3
32-
stream_feeds: ^0.3.1
32+
stream_feeds: ^0.4.0
3333
video_player: ^2.10.0
3434

3535
dev_dependencies:

0 commit comments

Comments
 (0)