Skip to content

Commit

Permalink
v0.1.7 changelog (#177)
Browse files Browse the repository at this point in the history
also rename fhevm-requires-db -> fhevm-decryptions-db
  • Loading branch information
david-zk authored Aug 4, 2023
1 parent 82e04ff commit 428a654
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 19 deletions.
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 git@github.com: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 git@github.com: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 git@github.com: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

0 comments on commit 428a654

Please sign in to comment.