Skip to content

Commit

Permalink
Version bump: 103.3. Add release notes file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoung committed Jul 26, 2012
1 parent 38cda6e commit ac4cf13
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 18 deletions.
49 changes: 49 additions & 0 deletions releasenotes.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# RestSharp Release Notes

## 103.3

* Added in the check for it being generic before calling GetGenericType Definition() (thanks nicwise)
* Add support for deserializing properties with an underscore prefix (thanks psampaio)
* BaseUrl is now virtual (thanks Haacked)
* Fixed List<T> json deserialization, when T was a something like DateTime, Timespan, Guid, etc. (thanks PedroLamas)
* Improve support for parsing iso8601 dates (thanks friism)

## 103.2

### New Features

* Allow deserializing a single item into a List<T> field, for JSON that only uses a list when there's more than one item for a given field (thanks petejohanson)
* Extended NtlmAuthenticator so that it can also impersonate a user (thanks kleinron)
* Added support for mapping JSON objects to Dictionary<string, string=""> (thanks petejohanson)
* Added ability to set Host and Date when built for .NET 4.0 (thanks lukebakken)
* Allow deserializing lists with null in them. Should resolve pull request (thanks petejohanson)
* Add support for deserializing JSON to subclasses of List<T> (thanks abaybuzskiy)

### Bugs fixed
* Fixed invalid OAuth1 signature for GET request (thanks trilobyte)
* Added some missing OAuth files to the .NET4 and Silverlight projects (thanks PedroLamas)
* Removed unused NewtonsoftJsonMonoTouch.dll and Newtonsoft.Json.MonoDroid.dll binaries (thanks attilah)
* Fixed various issues with MonoTouch/Droid ports (thanks attilah)
* Add ability to set Host and Date when built for .NET 4.0 (thanks lukebakken)
* Fixed XmlDeserializer issue not handling lowercase + dash root elements in some cases
* Fixed an issue where RestResponse.Request was not populated (thanks mattleibow)
* Don't crash on captive networks that intercept SSL (thanks aroben)

## 103.1

* #267 Added CLS Compliance
* #263 Fixed InvalidCastException
* #218 Handles connection failures better
* #231 OAuth now complies with rfc3986 url hex encoding

## 103.0 - Remove dependency on Json.NET

* Remove WP7.0 support (7.1 Mango remains).

## 102.7

* Updating Json.NET to 4.0.8, misc fixes

## 102.6

* Updating Json.NET reference to 4.0.5
24 changes: 6 additions & 18 deletions restsharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>RestSharp</id>
<version>103.2</version>
<version>103.3</version>
<authors>John Sheehan, RestSharp Community</authors>
<owners>John Sheehan</owners>
<description>Simple REST and HTTP API Client</description>
Expand All @@ -13,23 +13,11 @@
<tags>REST HTTP API JSON XML</tags>
<releaseNotes>
<![CDATA[
New Features
- Allow deserializing a single item into a List<T> field, for JSON that only uses a list when there's more than one item for a given field (thanks petejohanson)
- Extended NtlmAuthenticator so that it can also impersonate a user (thanks kleinron)
- Added support for mapping JSON objects to Dictionary<string, string=""> (thanks petejohanson)
- Added ability to set Host and Date when built for .NET 4.0 (thanks lukebakken)
- Allow deserializing lists with null in them. Should resolve pull request (thanks petejohanson)
- Add support for deserializing JSON to subclasses of List<T> (thanks abaybuzskiy)
Bugs fixed
- Fixed invalid OAuth1 signature for GET request (thanks trilobyte)
- Added some missing OAuth files to the .NET4 and Silverlight projects (thanks PedroLamas)
- Removed unused NewtonsoftJsonMonoTouch.dll and Newtonsoft.Json.MonoDroid.dll binaries (thanks attilah)
- Fixed various issues with MonoTouch/Droid ports (thanks attilah)
- Add ability to set Host and Date when built for .NET 4.0 (thanks lukebakken)
- Fixed XmlDeserializer issue not handling lowercase + dash root elements in some cases
- Fixed an issue where RestResponse.Request was not populated (thanks mattleibow)
- Don't crash on captive networks that intercept SSL (thanks aroben)
* Added in the check for it being generic before calling GetGenericType Definition() (thanks nicwise)
* Add support for deserializing properties with an underscore prefix (thanks psampaio)
* BaseUrl is now virtual (thanks Haacked)
* Fixed List<T> json deserialization, when T was a something like DateTime, Timespan, Guid, etc. (thanks PedroLamas)
* Improve support for parsing iso8601 dates (thanks friism)
]]>
</releaseNotes>
</metadata>
Expand Down

0 comments on commit ac4cf13

Please sign in to comment.