Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.1.7 changelog #177

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,30 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## [v0.1.7]

**This version includes several repositories renaming!**

Evmos-node docker image: ghcr.io/zama-ai/evmos-node:v0.1.7
Evmos-node developer docker image: ghcr.io/zama-ai/evmos-dev-node:v0.1.7

For build:

| Name | Type | version |
| :---------: | :--------: | :--------------------------------------: |
| go-ethereum | repository | v0.1.7 |
| ethermint | repository | v0.1.2 |
| tfhe-rs | repository | 0.3.0-beta.0 |


For e2e test:

| Name | Type | version |
| :------------------: | :--------: | :-------------: |
| fhevm-solidity | repository | v0.1.7 |
| fhevm-tfhe-cli | repository | v0.1.2 |
| fhevm-decryptions-db | repository | v0.1.0 |

## [v0.1.6]

**This version includes several repositories renaming!**
Expand Down
38 changes: 19 additions & 19 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ FHEVM_TFHE_CLI_PATH ?= $(WORKDIR)/fhevm-tfhe-cli
FHEVM_TFHE_CLI_PATH_EXISTS := $(shell test -d $(FHEVM_TFHE_CLI_PATH)/.git && echo "true" || echo "false")
FHEVM_TFHE_CLI_VERSION ?= v0.1.2

FHEVM_REQUIRES_DB_PATH ?= $(WORKDIR)/fhevm-requires-db
FHEVM_REQUIRES_DB_PATH_EXISTS := $(shell test -d $(FHEVM_REQUIRES_DB_PATH)/.git && echo "true" || echo "false")
FHEVM_REQUIRES_DB_VERSION ?= v0.1.0
FHEVM_DECRYPTIONS_DB_PATH ?= $(WORKDIR)/fhevm-decryptions-db
FHEVM_DECRYPTIONS_DB_PATH_EXISTS := $(shell test -d $(FHEVM_DECRYPTIONS_DB_PATH)/.git && echo "true" || echo "false")
FHEVM_DECRYPTIONS_DB_VERSION ?= v0.1.0

FHEVM_SOLIDITY_PATH ?= $(WORKDIR)/fhevm-solidity
FHEVM_SOLIDITY_PATH_EXISTS := $(shell test -d $(FHEVM_SOLIDITY_PATH)/.git && echo "true" || echo "false")
Expand Down Expand Up @@ -153,7 +153,7 @@ print-info:
@echo 'ETHERMINT_TAG: $(ETHERMINT_VERSION) ---extracted from go.mod'
@echo 'TFHE_RS_VERSION: $(TFHE_RS_VERSION) ---extracted from Makefile'
@echo 'FHEVM_TFHE_CLI_VERSION: $(FHEVM_TFHE_CLI_VERSION) ---extracted from Makefile'
@echo 'FHEVM_REQUIRES_DB_VERSION: $(FHEVM_REQUIRES_DB_VERSION) ---extracted from Makefile'
@echo 'FHEVM_DECRYPTIONS_DB_VERSION: $(FHEVM_DECRYPTIONS_DB_VERSION) ---extracted from Makefile'
@echo 'FHEVM_SOLIDITY_VERSION: $(FHEVM_SOLIDITY_VERSION) ---extracted from Makefile'
@bash scripts/get_repository_info.sh evmos ${CURDIR}
@bash scripts/get_repository_info.sh tfhe-rs $(TFHE_RS_PATH)
Expand Down Expand Up @@ -228,21 +228,21 @@ else
$(MAKE) clone_fhevm_solidity
endif

check-fhevm-requires-db: $(WORKDIR)/
$(info check-fhevm-requires-db)
ifeq ($(FHEVM_REQUIRES_DB_PATH_EXISTS), true)
@echo "fhevm-requires-db exists in $(FHEVM_REQUIRES_DB_PATH)"
@if [ ! -d $(WORKDIR)/fhevm-requires-db ]; then \
echo 'fhevm-requires-db is not available in $(WORKDIR)'; \
echo "FHEVM_REQUIRES_DB_PATH is set to a custom value"; \
check-fhevm-decryptions-db: $(WORKDIR)/
$(info check-fhevm-decryptions-db)
ifeq ($(FHEVM_DECRYPTIONS_DB_PATH_EXISTS), true)
@echo "fhevm-decryptions-db exists in $(FHEVM_DECRYPTIONS_DB_PATH)"
@if [ ! -d $(WORKDIR)/fhevm-decryptions-db ]; then \
echo 'fhevm-decryptions-db is not available in $(WORKDIR)'; \
echo "FHEVM_DECRYPTIONS_DB_PATH is set to a custom value"; \
else \
echo 'fhevm-requires-db is already available in $(WORKDIR)'; \
echo 'fhevm-decryptions-db is already available in $(WORKDIR)'; \
fi
else
@echo "fhevm-requires-db does not exist"
@echo "fhevm-decryptions-db does not exist"
echo "We clone it for you!"
echo "If you want your own version please update FHEVM_REQUIRES_DB_PATH pointing to your fhevm-requires-db folder!"
$(MAKE) clone_fhevm_requires_db
echo "If you want your own version please update FHEVM_DECRYPTIONS_DB_PATH pointing to your fhevm-decryptions-db folder!"
$(MAKE) clone_fhevm_decryptions_db
endif


Expand Down Expand Up @@ -294,10 +294,10 @@ clone_tfhe_rs: $(WORKDIR)/
cd $(WORKDIR) && git clone [email protected]:zama-ai/tfhe-rs.git
cd $(WORKDIR)/tfhe-rs && git checkout $(TFHE_RS_VERSION)

clone_fhevm_requires_db: $(WORKDIR)/
$(info Cloning fhevm-requires-db version $(FHEVM_REQUIRES_DB_VERSION))
cd $(WORKDIR) && git clone [email protected]:zama-ai/fhevm-requires-db.git
cd $(WORKDIR)/fhevm-requires-db && git checkout $(FHEVM_REQUIRES_DB_VERSION)
clone_fhevm_decryptions_db: $(WORKDIR)/
$(info Cloning fhevm-decryptions-db version $(FHEVM_DECRYPTIONS_DB_VERSION))
cd $(WORKDIR) && git clone [email protected]:zama-ai/fhevm-decryptions-db.git
cd $(WORKDIR)/fhevm-decryptions-db && git checkout $(FHEVM_DECRYPTIONS_DB_VERSION)

clone_go_ethereum: $(WORKDIR)/
$(info Cloning Go-ethereum version $(GO_ETHEREUM_VERSION))
Expand Down
Loading