Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #274 from fqutishat/update
Browse files Browse the repository at this point in the history
chore: Release 0.1.6
  • Loading branch information
fqutishat authored Mar 6, 2021
2 parents c8b309f + 273eeed commit 9909140
Show file tree
Hide file tree
Showing 9 changed files with 193 additions and 76 deletions.
3 changes: 1 addition & 2 deletions ci/version_var.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@

# Release Parameters
BASE_VERSION=0.1.6
IS_RELEASE=false
IS_RELEASE=true

# Project Parameters
SOURCE_REPO=trustbloc-did-method
BASE_PKG_NAME=driver-did-trustbloc
CLI_PKG_NAME=did-method-cli
RELEASE_REPO=ghcr.io/trustbloc
Expand Down
12 changes: 6 additions & 6 deletions cmd/did-method-cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ module github.com/trustbloc/trustbloc-did-method/cmd/did-method-cli
replace github.com/trustbloc/trustbloc-did-method => ../..

require (
github.com/btcsuite/btcutil v1.0.1
github.com/hyperledger/aries-framework-go v0.1.6-0.20210304152953-16ffd16ca955
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210303194824-a55a12f8d063
github.com/btcsuite/btcutil v1.0.2
github.com/hyperledger/aries-framework-go v0.1.6
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210306170115-156a24580a5c
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210306170115-156a24580a5c
github.com/spf13/cobra v1.0.0
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693
github.com/stretchr/testify v1.7.0
github.com/trustbloc/edge-core v0.1.6-0.20210304151911-954ad69796fc
github.com/trustbloc/sidetree-core-go v0.1.6-0.20210301232849-50c4792e1ca1
github.com/trustbloc/edge-core v0.1.6
github.com/trustbloc/sidetree-core-go v0.6.0
github.com/trustbloc/trustbloc-did-method v0.0.0
)

Expand Down
72 changes: 57 additions & 15 deletions cmd/did-method-cli/go.sum

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions cmd/did-method-rest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ module github.com/trustbloc/trustbloc-did-method/cmd/did-method-rest

replace github.com/trustbloc/trustbloc-did-method => ../..

replace github.com/piprate/json-gold => github.com/trustbloc/json-gold v0.3.1-0.20200414173446-30d742ee949e

require (
github.com/gorilla/mux v1.7.4
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210306170115-156a24580a5c
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.7.0
github.com/trustbloc/edge-core v0.1.6-0.20210304151911-954ad69796fc
github.com/trustbloc/edge-core v0.1.6
github.com/trustbloc/trustbloc-did-method v0.0.0
)

Expand Down
75 changes: 58 additions & 17 deletions cmd/did-method-rest/go.sum

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@

module github.com/trustbloc/trustbloc-did-method

replace github.com/piprate/json-gold => github.com/trustbloc/json-gold v0.3.1-0.20200414173446-30d742ee949e

go 1.15

require (
github.com/btcsuite/btcutil v1.0.1
github.com/gorilla/mux v1.7.4
github.com/hyperledger/aries-framework-go v0.1.6-0.20210304152953-16ffd16ca955
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go v0.1.6
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210306170115-156a24580a5c
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210306170115-156a24580a5c
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.7.0
)
4 changes: 2 additions & 2 deletions test/bdd/fixtures/sidetree-mock/.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# SPDX-License-Identifier: Apache-2.0
#

SIDETREE_MOCK_IMAGE=ghcr.io/trustbloc-cicd/sidetree-mock
SIDETREE_MOCK_IMAGE_TAG=0.1.6-snapshot-f76e851
SIDETREE_MOCK_IMAGE=ghcr.io/trustbloc/sidetree-mock
SIDETREE_MOCK_IMAGE_TAG=0.6.0
14 changes: 7 additions & 7 deletions test/bdd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ go 1.15
require (
github.com/cucumber/godog v0.9.0
github.com/fsouza/go-dockerclient v1.6.0
github.com/google/uuid v1.1.2
github.com/hyperledger/aries-framework-go v0.1.6-0.20210304152953-16ffd16ca955
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210303194824-a55a12f8d063
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20210303180208-4bb3ae8b32c9
github.com/hyperledger/aries-framework-go/spi v0.0.0-20210303180208-4bb3ae8b32c9
github.com/google/uuid v1.2.0
github.com/hyperledger/aries-framework-go v0.1.6
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20210306170115-156a24580a5c
github.com/hyperledger/aries-framework-go-ext/component/vdr/trustbloc v0.0.0-20210306170115-156a24580a5c
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20210306162754-1a1e0c4a378e
github.com/hyperledger/aries-framework-go/spi v0.0.0-20210306162754-1a1e0c4a378e
github.com/sirupsen/logrus v1.6.0
github.com/tidwall/gjson v1.6.7
github.com/trustbloc/edge-core v0.1.6-0.20210304151911-954ad69796fc
github.com/trustbloc/edge-core v0.1.6
github.com/trustbloc/trustbloc-did-method v0.0.0
gotest.tools/v3 v3.0.3 // indirect
)
Expand Down
Loading

0 comments on commit 9909140

Please sign in to comment.