Skip to content

Commit

Permalink
Merge pull request #182 from zama-ai/release061
Browse files Browse the repository at this point in the history
Release061
  • Loading branch information
jatZama authored Dec 11, 2024
2 parents 1165bd3 + b09c37b commit 7c2ff2c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion contracts/gatewayLib/lib/Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ library Gateway {
return data;
}

function remove32Slice(bytes memory input, uint256 start) public pure returns (bytes memory) {
function remove32Slice(bytes memory input, uint256 start) private pure returns (bytes memory) {
// @note we assume start+32 is less than input.length
bytes memory result = new bytes(input.length - 32);

Expand Down
4 changes: 2 additions & 2 deletions contracts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fhevm-core-contracts",
"version": "0.6.1-0",
"version": "0.6.1",
"description": "fhEVM contracts",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions fhevm-engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fhevm-engine/coprocessor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coprocessor"
version = "0.6.1-alpha.0"
version = "0.6.1"
default-run = "coprocessor"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion fhevm-engine/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "executor"
version = "0.6.1-alpha.0"
version = "0.6.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion fhevm-engine/fhevm-engine-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhevm-engine-common"
version = "0.6.1-alpha.0"
version = "0.6.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion fhevm-engine/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scheduler"
version = "0.6.1-alpha.0"
version = "0.6.1"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit 7c2ff2c

Please sign in to comment.