Skip to content

Commit e69d283

Browse files
committed
Merge pull request restsharp#422 from restsharp/Release-104.2
Preparing 104.2.0 release
2 parents d321bd5 + a9f9b04 commit e69d283

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

RestSharp/SharedAssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// by using the '*' as shown below:
2626
// [assembly: AssemblyVersion("1.0.*")]
2727
[assembly: AssemblyVersion(SharedAssembylInfo.Version + ".0")]
28-
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version + "-beta")]
28+
[assembly: AssemblyInformationalVersion(SharedAssembylInfo.Version)]
2929
[assembly: AssemblyFileVersion(SharedAssembylInfo.Version + ".0")]
3030

3131
class SharedAssembylInfo

releasenotes.markdown

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# RestSharp Release Notes
22

3+
## 104.2
4+
5+
To see all commits for this version, [click here](https://github.com/RestSharp/RestSharp/compare/104.1...104.2).
6+
7+
### New Features
8+
9+
* Allow specifying the body of a `PUT` or `POST` to be specified as a byte array.
10+
* Added `ExecuteAsync` overloads that return `Task<T>`
11+
* Improved handling of nullable types
12+
* Support `DateTimeOffset` to `XmlDeserializer`
13+
14+
### Bug Fixes
15+
16+
* Crash if an XML attribute contains empty string
17+
* Adding array of int to request
18+
* Support XAuth parameters for OAuth parameter handling
19+
* Memory leak around handling of Accepts header
20+
* `ConfigureProxy` was not being called for async request
21+
* Serialization for classes with `IList` properties
22+
* Exception when executing async requests on multiple threads with one `RestClient`
23+
* ResponseStatus.Aborted was not being set if request was aborted
24+
* ClientCertificate threw `NotImplementedException` on Mono
25+
* Fix decimal parsing for small decimal values
26+
327
## 104.1
428

529
* Fixed bug where ExecuteAsync sometimes doesn't send data

0 commit comments

Comments
 (0)