Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
AqlaSolutions committed May 24, 2016
1 parent 621731b commit 07f5960
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
10 changes: 9 additions & 1 deletion Nuget/aqlaserializer.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>aqlaserializer</id>
<version>2.0.0.190</version>
<version>2.0.0.227</version>
<authors>Vladyslav Taranov</authors>
<copyright>Vladyslav Taranov 2016, fork source from Marc Gravell 2016</copyright>
<owners>Vladyslav Taranov</owners>
Expand All @@ -27,6 +27,14 @@ Some build configurations may be not available through nuget, you can download t
<language>en-US</language>
<releaseNotes>

* 2.0.0.227: V2 release
- Added CompileOptions.IterativeMode
- Fixed incorrect IL generated when list.Add method has a return value
- Fixed incorrect behavior of model.CloneAsUnfrozen
- Indexers won't be added as implicit fields
- Enum flags for model ids, see model.SetEnumFlagModelId
- RunSharp dependency updated

* 2.0.0.186: V2 RC2
- Removing field won't break reference tracking.

Expand Down
4 changes: 2 additions & 2 deletions precompile/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.190")]
[assembly: AssemblyFileVersion("2.0.0.190")]
[assembly: AssemblyVersion("2.0.0.227")]
[assembly: AssemblyFileVersion("2.0.0.227")]
4 changes: 2 additions & 2 deletions protobuf-net.Extensions/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.190")]
[assembly: AssemblyVersion("2.0.0.227")]
#if !CF
[assembly: AssemblyFileVersion("2.0.0.190")]
[assembly: AssemblyFileVersion("2.0.0.227")]
#endif
[assembly: CLSCompliant(true)]
3 changes: 1 addition & 2 deletions protobuf-net.unittest/Aqla/LegacyTupleMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public void Legacy()
public void Normal()
{
var tm = TypeModel.Create();
tm.SkipForcedAdvancedVersioning = true;
var s = tm.GetDebugSchema(typeof(Container));
Assert.That(s, Is.EqualTo(@"Root : Container
-> NetObject : Container = AsReference, UseConstructor
Expand All @@ -114,15 +115,13 @@ public void Normal()
-> Container.Foo
-> NetObject : Dictionary`2 = UseConstructor, WithNullWireType
-> List : Dictionary`2 = NewPacked, Append
-> NetObject : KeyValuePair`2 = UseConstructor
-> ModelType : KeyValuePair`2
-> LinkTo [System.Collections.Generic.KeyValuePair`2[System.String,System.Collections.Generic.List`1[AqlaSerializer.unittest.Aqla.LegacyTupleMode+Element]]]
,
#2
-> Container.Bar
-> NetObject : Dictionary`2 = UseConstructor, WithNullWireType
-> List : Dictionary`2 = NewPacked, Append
-> NetObject : KeyValuePair`2 = UseConstructor
-> ModelType : KeyValuePair`2
-> LinkTo [System.Collections.Generic.KeyValuePair`2[AqlaSerializer.unittest.Aqla.LegacyTupleMode+Element,AqlaSerializer.unittest.Aqla.LegacyTupleMode+ElementDef]]
}
Expand Down
4 changes: 2 additions & 2 deletions protobuf-net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.190")]
[assembly: AssemblyVersion("2.0.0.227")]
#if !CF
[assembly: AssemblyFileVersion("2.0.0.190")]
[assembly: AssemblyFileVersion("2.0.0.227")]
#endif
#if !FX11
[assembly: InternalsVisibleTo("aqlaserializer.unittest, PublicKey=002400000480000094000000060200000024000052534131000400000100010091B11AB23561C227F083424C0162A38DA330B724B6E96C1BE6C5989BFDD5C1BA3E555D8F105DD352C2623FE6AF90F4FA3173C6120DD567283434513DA579728230E1697A156770A81B7FBF5535ECDB96D2737E74181A4D980647AE33CDFB6E0C1FF63065AE8E33BB27374090393685FF265563655DE4829B0E5C996B1CF9A3E3")]
Expand Down

0 comments on commit 07f5960

Please sign in to comment.