Skip to content

Commit f54ea9a

Browse files
authored
3.5.0 (#771)
* 3.5.0 * Fix
1 parent 5412edb commit f54ea9a

5 files changed

Lines changed: 14 additions & 6 deletions

File tree

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<Copyright>2015-2022 The Neo Project</Copyright>
6-
<VersionPrefix>3.4.0</VersionPrefix>
6+
<VersionPrefix>3.5.0</VersionPrefix>
77
<TargetFramework>net6.0</TargetFramework>
88
<Authors>The Neo Project</Authors>
99
</PropertyGroup>

src/Neo.Compiler.CSharp/Neo.Compiler.CSharp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
23-
<PackageReference Include="Neo" Version="3.4.0-CI01389" />
22+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
23+
<PackageReference Include="Neo" Version="3.5.0" />
2424
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
2525
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
2626
</ItemGroup>

src/Neo.SmartContract.Framework/OpCode.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ public enum OpCode : byte
2121
PUSHINT128 = 0x04,
2222
PUSHINT256 = 0x05,
2323
/// <summary>
24+
/// Pushes the boolean value <see langword="true"/> onto the stack.
25+
/// </summary>
26+
PUSHT = 0x08,
27+
/// <summary>
28+
/// Pushes the boolean value <see langword="false"/> onto the stack.
29+
/// </summary>
30+
PUSHF = 0x09,
31+
/// <summary>
2432
/// Convert the next four bytes to an address, and push the address onto the stack.
2533
/// </summary>
2634
PUSHA = 0x0A,

src/Neo.SmartContract.Template/templates/neocontract/ProjectName.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Neo.SmartContract.Framework" Version="3.4.0" />
8+
<PackageReference Include="Neo.SmartContract.Framework" Version="3.5.0" />
99
</ItemGroup>
1010

1111
<PropertyGroup>

tests/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
1111
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
1212
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
13-
<PackageReference Include="coverlet.collector" Version="3.1.2">
13+
<PackageReference Include="coverlet.collector" Version="3.2.0">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

0 commit comments

Comments
 (0)