Skip to content

Commit 060bc3c

Browse files
committed
updated serpent version to 1.29 so we get the signed one of that as well
1 parent 3741606 commit 060bc3c

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

dotnet/Razorvine.Pyrolite/DebugHelper/DebugHelper.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<ProjectReference Include="..\Pyrolite\Pyrolite.csproj" />
99
</ItemGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Razorvine.Serpent" Version="1.25.0" />
11+
<PackageReference Include="Razorvine.Serpent" Version="1.29.0" />
1212
</ItemGroup>
1313
</Project>

dotnet/Razorvine.Pyrolite/EchoExample/EchoExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<ProjectReference Include="..\Pyrolite\Pyrolite.csproj" />
99
</ItemGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Razorvine.Serpent" Version="1.25.0" />
11+
<PackageReference Include="Razorvine.Serpent" Version="1.29.0" />
1212
</ItemGroup>
1313
</Project>

dotnet/Razorvine.Pyrolite/NamingExample/NamingExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<ProjectReference Include="..\Pyrolite\Pyrolite.csproj" />
99
</ItemGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Razorvine.Serpent" Version="1.25.0" />
11+
<PackageReference Include="Razorvine.Serpent" Version="1.29.0" />
1212
</ItemGroup>
1313
</Project>

dotnet/Razorvine.Pyrolite/Pyrolite/Pyro/Config.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public enum SerializerType {
2525
public static bool METADATA = true;
2626

2727
public const int PROTOCOL_VERSION = 48; // Pyro 4.38+
28-
public const string PYROLITE_VERSION="4.24";
28+
public const string PYROLITE_VERSION="4.25";
2929

3030
public const string DAEMON_NAME = "Pyro.Daemon";
3131
}

dotnet/Razorvine.Pyrolite/Pyrolite/Pyro/Serializers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ static SerpentSerializer()
145145
{
146146
Assembly serpentAssembly = Assembly.Load("Razorvine.Serpent");
147147
Version serpentVersion = serpentAssembly.GetName().Version;
148-
Version requiredSerpentVersion = new Version(1, 20);
148+
Version requiredSerpentVersion = new Version(1, 29);
149149
if(serpentVersion<requiredSerpentVersion)
150150
throw new NotSupportedException("serpent version "+requiredSerpentVersion+" (or newer) is required");
151151

dotnet/Razorvine.Pyrolite/Pyrolite/Pyrolite.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<Authors>Irmen de Jong</Authors>
99
<Product>Serpent Python literal expression serialization</Product>
1010
<PackageId>Razorvine.Pyrolite</PackageId>
11-
<Version>4.24.0</Version>
12-
<AssemblyVersion>4.24.0.0</AssemblyVersion>
13-
<FileVersion>4.24.0.0</FileVersion>
11+
<Version>4.25.0</Version>
12+
<AssemblyVersion>4.25.0.0</AssemblyVersion>
13+
<FileVersion>4.25.0.0</FileVersion>
1414
<SignAssembly>true</SignAssembly>
1515
<DelaySign>false</DelaySign>
1616
<AssemblyOriginatorKeyFile>Pyrolite.snk</AssemblyOriginatorKeyFile>
@@ -28,11 +28,11 @@ More info about Pyro: https://pyro4.readthedocs.io/</Description>
2828
<RepositoryUrl>https://github.com/irmen/Pyrolite.git</RepositoryUrl>
2929
<RepositoryType>git</RepositoryType>
3030
<PackageTags>pyro python rpc remote-objects</PackageTags>
31-
<PackageReleaseNotes>Moved to C# 7 language level
32-
Pickle and Unpickle performance improvements by creating less intermedite objects</PackageReleaseNotes>
31+
<PackageReleaseNotes>assembly is now strong-name signed (so other strong-named assemblies can reference it)
32+
updated dependency to Razorvine.Serpent 1.29 to get the strong-name signed version of that as well</PackageReleaseNotes>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<PackageReference Include="Razorvine.Serpent" Version="1.25.0" />
35+
<PackageReference Include="Razorvine.Serpent" Version="1.29.0" />
3636
<PackageReference Include="System.Memory" Version="4.5.2" />
3737
</ItemGroup>
3838
</Project>

dotnet/Razorvine.Pyrolite/Tests/Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
11-
<PackageReference Include="Razorvine.Serpent" Version="1.25.0" />
11+
<PackageReference Include="Razorvine.Serpent" Version="1.29.0" />
1212
<PackageReference Include="xunit" Version="2.3.1" />
1313
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
1414
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />

0 commit comments

Comments
 (0)