File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 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
3131class SharedAssembylInfo
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments