Skip to content

Commit f3a8f1c

Browse files
committed
Release 4.2.0
1 parent 60f8e9b commit f3a8f1c

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.2.0 - 2021-02-26
2+
* Add open graph scraping support
3+
14
## 4.1.1 - 2021-02-26
25
* Naming consistency
36

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,12 @@ var input = new Dictionary<string, object>()
173173
var response = await client.Personalization.Get("my_endpoint", input);
174174

175175
// File & Image Uplaod
176-
var fileUpload = client.Files.Upload(stream, name, contentType);
177-
var imageupload = client.Images.Upload(stream, name, contentType);
176+
var fileUpload = await client.Files.Upload(stream, name, contentType);
177+
var imageupload = await client.Images.Upload(stream, name, contentType);
178178
// Use fileUpload.File and imageUpload.File afterwards
179+
180+
// Open graph
181+
Og og = await client.Og("https://google.com");
179182
```
180183

181184
### Copyright and License Information

VERSION

0 Bytes
Binary file not shown.

appveyor.yml

0 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.1.1";
11+
static readonly string Version = "4.2.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.1.1</Version>
11-
<PackageVersion>4.1.1</PackageVersion>
10+
<Version>4.2.0</Version>
11+
<PackageVersion>4.2.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)