Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [5.0.0](https://github.com/GetStream/stream-net/compare/4.8.0...5.0.0) (2022-02-28)


### Features

- In v5.0.0, [we have refactored the library](https://github.com/GetStream/stream-net/pull/67) to be more maintainable in the future.
Most importantly, we got rid of some complex internal logic (such as tricky json serialization and deserialization, code organization improvements etc.).
Also, we made the library more modern such as adding `Async` postfix to async methods. All public
methods have documentation now and a link to the official docs now. This README file's code snippets are updated to reflect the new changes.

### 🚨 Breaking changes:
- All async methods have `Async` postfix.
- Model classes have been moved into `Stream.Models` namespace.
- All client classes have interfaces now, and `Ref()` methods are not static anymore. This will make it easier to the consumers of this library to unit test them.

## [4.8.0](https://github.com/GetStream/stream-net/compare/4.7.0...4.8.0) (2022-02-23)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</p>

> ## 🚨 Breaking changes in v5.0 <
> In v1.0.0, [we have refactored the library](https://github.com/GetStream/stream-net/pull/67) to be more maintainable in the future.
> In v5.0.0, [we have refactored the library](https://github.com/GetStream/stream-net/pull/67) to be more maintainable in the future.
> Most importantly, we got rid of some complex internal logic (such as tricky json serialization and deserialization, code organization improvements etc.).
> Also, we made the library more modern such as adding `Async` postfix to async methods. All public
> methods have documentation now and a link to the official docs now. This README file's code snippets are updated to reflect the new changes.
Expand Down
2 changes: 1 addition & 1 deletion src/stream-net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PropertyGroup>
<PackageId>stream-net</PackageId>
<Title>.NET Client for Stream Feeds</Title>
<Version>4.8.0</Version>
<Version>5.0.0</Version>
<Company>Stream.io</Company>
<Authors>GetStream.io</Authors>
<Copyright>© $([System.DateTime]::UtcNow.ToString(yyyy)) Stream.io</Copyright>
Expand Down