Skip to content

Commit

Permalink
3.5.0 (#771)
Browse files Browse the repository at this point in the history
* 3.5.0

* Fix
  • Loading branch information
erikzhang committed Dec 8, 2022
1 parent 5412edb commit f54ea9a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<Copyright>2015-2022 The Neo Project</Copyright>
<VersionPrefix>3.4.0</VersionPrefix>
<VersionPrefix>3.5.0</VersionPrefix>
<TargetFramework>net6.0</TargetFramework>
<Authors>The Neo Project</Authors>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Neo.Compiler.CSharp/Neo.Compiler.CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
<PackageReference Include="Neo" Version="3.4.0-CI01389" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
<PackageReference Include="Neo" Version="3.5.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions src/Neo.SmartContract.Framework/OpCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ public enum OpCode : byte
PUSHINT128 = 0x04,
PUSHINT256 = 0x05,
/// <summary>
/// Pushes the boolean value <see langword="true"/> onto the stack.
/// </summary>
PUSHT = 0x08,
/// <summary>
/// Pushes the boolean value <see langword="false"/> onto the stack.
/// </summary>
PUSHF = 0x09,
/// <summary>
/// Convert the next four bytes to an address, and push the address onto the stack.
/// </summary>
PUSHA = 0x0A,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Neo.SmartContract.Framework" Version="3.4.0" />
<PackageReference Include="Neo.SmartContract.Framework" Version="3.5.0" />
</ItemGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit f54ea9a

Please sign in to comment.