Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
INCR to v3.9.29
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Dec 7, 2012
1 parent b85e1b6 commit 41f57ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NuGet/servicestack.text.nuspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>ServiceStack.Text</id> <id>ServiceStack.Text</id>
<title>.NET's fastest JSON Serializer by ServiceStack</title> <title>.NET's fastest JSON Serializer by ServiceStack</title>
<version>3.9.28</version> <version>3.9.29</version>
<authors>Demis Bellot</authors> <authors>Demis Bellot</authors>
<owners>Demis Bellot</owners> <owners>Demis Bellot</owners>
<summary>.NET's fastest JSON, JSV and CSV Text Serializers (3x faster than JSON.NET)</summary> <summary>.NET's fastest JSON, JSV and CSV Text Serializers (3x faster than JSON.NET)</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceStack.Text/Env.cs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static Env()
+ (IsMonoTouch ? " MonoTouch" : ""); + (IsMonoTouch ? " MonoTouch" : "");
} }


public static decimal ServiceStackVersion = 3.928m; public static decimal ServiceStackVersion = 3.929m;


public static bool IsUnix { get; set; } public static bool IsUnix { get; set; }


Expand Down
2 changes: 1 addition & 1 deletion src/ServiceStack.Text/Properties/AssemblyInfo.cs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.9.28.0")] [assembly: AssemblyVersion("3.9.29.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")] //[assembly: AssemblyFileVersion("1.0.0.0")]

3 comments on commit 41f57ed

@Jozzle
Copy link

@Jozzle Jozzle commented on 41f57ed Dec 7, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi there!

First of all, my compliments for this amizing library! It has already been a valued performance upgrade for our application 👍

I've pulled ServiceStack.Text version 3.9.29 from nuget (for a SilverLight 5 project) and am experience the following trying to also implement it for JSon objects using polimorphism:

The following two tests fail;

public void Can_deserialise_polymorphic_item_with_nonabstract_base_deserializes_derived_properties_correctly()
public void Can_force_specific_TypeInfo()

And a method 'IncludeTypeInfo' (JsConfig.IncludeTypeInfo = true;), doesn't seem to be available at all.

(referencing to test: https://github.com/ServiceStack/ServiceStack.Text/blob/master/tests/ServiceStack.Text.Tests/JsonTests/PolymorphicListTests.cs)

Am i missing something here? Does the Silverlight library not support polymorphism?

New to GitHub, so please accept my apologies if this is not the place for my question.

Regards!

J.

@mythz
Copy link
Member Author

@mythz mythz commented on 41f57ed Dec 9, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Jozzle,

The Silverlight library is maintained by the ServiceStack Silverlight contributors which they tend to fix builds and maintain when they update their clients.

Ideally the Silverlight builds should support all the features that the base library does, albeit using slower workarounds when don't exist in full .NET. As it's not maintained by the core team (who don't even have Silverlight installed) it's common for Silverlight builds to slip behind the builds of the other platforms.

@Jozzle
Copy link

@Jozzle Jozzle commented on 41f57ed Dec 10, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for clearing that up!

I really admire & am gratefull for all the work done here.

Regards,

J.

Please sign in to comment.