Skip to content

Commit a59d18d

Browse files
committed
Release 4.3.0
1 parent 856da7a commit a59d18d

File tree

6 files changed

+14
-3
lines changed

6 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.3.0 - 2021-03-10
2+
* Add follow stats endpoint support
3+
* Add .Net 5 support
4+
15
## 4.2.0 - 2021-02-26
26
* Add open graph scraping support
37

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ userFeed1.Following(10, 20);
7676
// Check if $user_feed_1 follows specific feeds
7777
userFeed1.Following(0, 2, new String[] { "user:42", "user:43" });
7878

79+
// Follow stats
80+
// Count the number of users following this feed
81+
// Count the number of tags are followed by this feed
82+
var stats = userFeed1.FollowStats(new string []{ "user" }, new string[] { "tags" })
83+
Console.WriteLine(stats.Followers.Count);
84+
Console.WriteLine(stats.Following.Count);
85+
7986
// Retrieve activities by their ids
8087
var ids = new string[] { "e561de8f-00f1-11e4-b400-0cc47a024be0", "a34ndjsh-00f1-11e4-b400-0c9jdnbn0eb0" };
8188
var activities = await client.Batch.GetActivities(ids)

VERSION

0 Bytes
Binary file not shown.

appveyor.yml

24 Bytes
Binary file not shown.

src/stream-net/StreamClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Stream
88
{
99
public class StreamClient : IStreamClient
1010
{
11-
static readonly string Version = "4.2.0";
11+
static readonly string Version = "4.3.0";
1212

1313
internal const string BaseUrlFormat = "https://{0}-api.stream-io-api.com";
1414
internal const string BaseUrlPath = "/api/v1.0/";

src/stream-net/stream-net.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88
<PropertyGroup>
99
<PackageId>stream-net</PackageId>
10-
<Version>4.2.0</Version>
11-
<PackageVersion>4.2.0</PackageVersion>
10+
<Version>4.3.0</Version>
11+
<PackageVersion>4.3.0</PackageVersion>
1212
<Authors>GetStream.io</Authors>
1313
<Description>Client for getstream.io. Build scalable newsfeeds and activity streams in a few hours instead of weeks.</Description>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>

0 commit comments

Comments
 (0)