Skip to content

Commit d418f89

Browse files
authored
chore(llc): prepare for 0.3.1 release (#48)
1 parent 3295f49 commit d418f89

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
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.0
10+
stream_feeds: ^0.3.1

melos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ command:
4646
rxdart: ^0.28.0
4747
shared_preferences: ^2.5.3
4848
state_notifier: ^1.0.0
49-
stream_feeds: ^0.3.0
49+
stream_feeds: ^0.3.1
5050
stream_core: ^0.2.0
5151
video_player: ^2.10.0
5252
uuid: ^4.5.1

packages/stream_feeds/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Next release
1+
## 0.3.1
22
- Update API client with renaming `addReaction` to `addActivityReaction` and `deleteReaction` to `deleteActivityReaction`.
33
- Update `activity.currentFeed` capabilities when adding or updating activity from websocket events.
44

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Docs on data driven fixes: https://github.com/flutter/flutter/blob/master/docs/contributing/Data-driven-Fixes.md
2+
3+
version: 1
4+
transforms:
5+
#region Version 0.3.1: Rename of addReaction and deleteReaction to more specific names addActivityReaction and deleteActivityReaction
6+
- title: "rename addReaction to addActivityReaction"
7+
date: "2025-10-16"
8+
element:
9+
uris: ['package:stream_feeds/stream_feeds.dart']
10+
method: 'addReaction'
11+
inClass: 'Feed'
12+
changes:
13+
- kind: 'rename'
14+
newName: 'addActivityReaction'
15+
- title: "rename deleteReaction to deleteActivityReaction"
16+
date: "2025-10-16"
17+
element:
18+
uris: ['package:stream_feeds/stream_feeds.dart']
19+
method: 'deleteReaction'
20+
inClass: 'Feed'
21+
changes:
22+
- kind: 'rename'
23+
newName: 'deleteActivityReaction'
24+
#endregion Version 0.3.1
25+
#endregion

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.0
3+
version: 0.3.1
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: 1.0.0+1
5+
version: 0.3.1
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.0
32+
stream_feeds: ^0.3.1
3333
video_player: ^2.10.0
3434

3535
dev_dependencies:

0 commit comments

Comments
 (0)