File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 25
25
// by using the '*' as shown below:
26
26
// [assembly: AssemblyVersion("1.0.*")]
27
27
[ assembly: AssemblyVersion ( SharedAssembylInfo . Version + ".0" ) ]
28
- [ assembly: AssemblyInformationalVersion ( SharedAssembylInfo . Version + "-beta" ) ]
28
+ [ assembly: AssemblyInformationalVersion ( SharedAssembylInfo . Version ) ]
29
29
[ assembly: AssemblyFileVersion ( SharedAssembylInfo . Version + ".0" ) ]
30
30
31
31
class SharedAssembylInfo
Original file line number Diff line number Diff line change 1
1
# RestSharp Release Notes
2
2
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
+
3
27
## 104.1
4
28
5
29
* Fixed bug where ExecuteAsync sometimes doesn't send data
You can’t perform that action at this time.
0 commit comments