From 2bddb7942cef3eaa0ba19bd4d660acb29d39b4a6 Mon Sep 17 00:00:00 2001 From: bur Date: Fri, 5 Feb 2021 15:30:51 +0100 Subject: [PATCH] Release v1.0-rc1 --- README.md | 2 ++ config.mk | 2 +- docs/design/fabric-v2+/interfaces.md | 2 +- examples/README.md | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78326db10..d15292078 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,8 @@ Additional google documents provide details on FPC 1.0: ## Releases +- [v1.0-rc1 - Feburary 5, 2021](https://github.com/hyperledger-labs/fabric-private-chaincode/tree/v1.0-rc1) + - [Tech Preview - July 2, 2020](https://github.com/hyperledger-labs/fabric-private-chaincode/tree/concept-release-2.0) - [Concept Release - March 2, 2020](https://github.com/hyperledger-labs/fabric-private-chaincode/tree/concept-release-1.0) diff --git a/config.mk b/config.mk index ded106fc2..ebd05a82c 100644 --- a/config.mk +++ b/config.mk @@ -68,7 +68,7 @@ PROJECT_NAME=fabric-private-chaincode export FABRIC_VERSION ?= 2.3.0 -export FPC_VERSION := master +export FPC_VERSION := v1.0-rc1 export FABRIC_PATH ?= ${GOPATH}/src/github.com/hyperledger/fabric diff --git a/docs/design/fabric-v2+/interfaces.md b/docs/design/fabric-v2+/interfaces.md index ec12724bd..b6f5836cc 100644 --- a/docs/design/fabric-v2+/interfaces.md +++ b/docs/design/fabric-v2+/interfaces.md @@ -438,4 +438,4 @@ void log_notice(const char* format, ...); void log_info(const char* format, ...); void log_debug(const char* format, ...); ``` -See https://github.com/hyperledger-labs/fabric-private-chaincode/blob/master/ecc_enclave/enclave/shim.h +See https://github.com/hyperledger-labs/fabric-private-chaincode/blob/v1.0-rc1/ecc_enclave/enclave/shim.h diff --git a/examples/README.md b/examples/README.md index 27852f7ef..de3d41ca8 100644 --- a/examples/README.md +++ b/examples/README.md @@ -18,7 +18,7 @@ Components](https://github.com/hyperledger-labs/fabric-private-chaincode#archite for more details of involved components. ## Prequisites -This tutorial presumes that the repository in https://github.com/hyperledger-labs/fabric-private-chaincode has been installed as per [README.md](https://github.com/hyperledger-labs/fabric-private-chaincode/blob/master/README.md#requirements) in `FPC-INSTALL-DIR` which is in the `$GOPATH` folder. +This tutorial presumes that the repository in https://github.com/hyperledger-labs/fabric-private-chaincode has been installed as per [README.md](https://github.com/hyperledger-labs/fabric-private-chaincode/blob/v1.0-rc1/README.md#requirements) in `FPC-INSTALL-DIR` which is in the `$GOPATH` folder. ## Develop chaincode * Create a folder named `helloworld` in `FPC-INSTALL-DIR/examples`.