Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing 104.2.0 release #422

Merged
merged 2 commits into from
Sep 18, 2013
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