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
2 changes: 1 addition & 1 deletion RestSharp/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion(SharedAssembylInfo.Version + ".0")]
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version + "-beta")]
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version)]
[assembly: AssemblyFileVersion(SharedAssembylInfo.Version + ".0")]

class SharedAssembylInfo
Expand Down
24 changes: 24 additions & 0 deletions releasenotes.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# RestSharp Release Notes

## 104.2

To see all commits for this version, [click here](https://github.com/RestSharp/RestSharp/compare/104.1...104.2).

### New Features

* Allow specifying the body of a `PUT` or `POST` to be specified as a byte array.
* Added `ExecuteAsync` overloads that return `Task<T>`
* Improved handling of nullable types
* Support `DateTimeOffset` to `XmlDeserializer`

### Bug Fixes

* Crash if an XML attribute contains empty string
* Adding array of int to request
* Support XAuth parameters for OAuth parameter handling
* Memory leak around handling of Accepts header
* `ConfigureProxy` was not being called for async request
* Serialization for classes with `IList` properties
* Exception when executing async requests on multiple threads with one `RestClient`
* ResponseStatus.Aborted was not being set if request was aborted
* ClientCertificate threw `NotImplementedException` on Mono
* Fix decimal parsing for small decimal values

## 104.1

* Fixed bug where ExecuteAsync sometimes doesn't send data
Expand Down