Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #301 from RTradeLtd/docs/release-badge
Browse files Browse the repository at this point in the history
* badge no longer says `preview`
* add link to docker hub
* rebuild deps
  • Loading branch information
bobheadxi committed Feb 6, 2019
2 parents 55f5185 + 5f19ab9 commit dc83ba0
Show file tree
Hide file tree
Showing 2,491 changed files with 72,344 additions and 96,310 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG-V2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ releases. See our [versioning policy](/VERSIONING.md) for more details.

## v2.0.1

*
* docs: update README for V2-specific things ([#301](https://github.com/RTradeLtd/Temporal/pull/301))
* deps: upgrade all Temporal core subprojects to `~v2.0.0` ([#301](https://github.com/RTradeLtd/Temporal/pull/301))
* deps: pin IPFS to `v0.4.18` ([#301](https://github.com/RTradeLtd/Temporal/pull/301))
10 changes: 5 additions & 5 deletions Gopkg.lock

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

48 changes: 24 additions & 24 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,13 @@ ignored = ["github.com/karalabe/hid", "github.com/satori/go.uuid", "github.com/i
go-tests = true
unused-packages = true

###############
# RTRADE #
###############

[[constraint]]
name = "github.com/RTradeLtd/ChainRider-Go"
version = "=v1.0.7"
###########################
# RTRADE CORE SUBPROJECTS #
###########################

[[override]]
name = "github.com/RTradeLtd/grpc"
branch = "master"
version = "~v2.0.0"

[[override]]
name = "github.com/RTradeLtd/database"
Expand All @@ -28,22 +24,26 @@ ignored = ["github.com/karalabe/hid", "github.com/satori/go.uuid", "github.com/i
name = "github.com/RTradeLtd/config"
version = "~v2.0.0"

[[constraint]]
name = "github.com/RTradeLtd/cmd"
[[override]]
name = "github.com/RTradeLtd/kaas"
version = "~v2.0.0"

[[constraint]]
name = "github.com/RTradeLtd/crypto"
version = "=v1.0.0"
version = "~v2.0.0"

[[constraint]]
name = "github.com/RTradeLtd/go-ipfs-api"
branch = "master"

[[override]]
name = "github.com/RTradeLtd/kaas"
name = "github.com/RTradeLtd/cmd"
version = "~v2.0.0"

####################
# RTRADE LIBRARIES #
####################

[[constraint]]
name = "github.com/RTradeLtd/ChainRider-Go"
version = "=v1.0.7"

###############
# IPFS #
###############
Expand Down Expand Up @@ -80,17 +80,21 @@ ignored = ["github.com/karalabe/hid", "github.com/satori/go.uuid", "github.com/i
name = "github.com/ipfs/go-ipfs-cmdkit"
branch = "master"

[[override]]
name = "github.com/libp2p/go-reuseport-transport"
branch = "master"

###############
# THIRD PARTY #
###############

[[constraint]]
branch = "master"
name = "github.com/aviddiviner/gin-limit"
branch = "master"

[[constraint]]
branch = "master"
name = "github.com/c2h5oh/datasize"
branch = "master"

[[constraint]]
name = "github.com/dvwright/xss-mw"
Expand All @@ -101,12 +105,12 @@ ignored = ["github.com/karalabe/hid", "github.com/satori/go.uuid", "github.com/i
branch = "master"

[[constraint]]
branch = "master"
name = "github.com/semihalev/gin-stats"
branch = "master"

[[constraint]]
branch = "master"
name = "github.com/streadway/amqp"
branch = "master"

[[constraint]]
name = "github.com/gin-contrib/cors"
Expand All @@ -119,7 +123,3 @@ ignored = ["github.com/karalabe/hid", "github.com/satori/go.uuid", "github.com/i
[[constraint]]
name = "github.com/appleboy/gin-jwt"
revision = "f7347d7c16fc8297bf5b7215b9e4847a5ca05d90"

[[override]]
name = "github.com/libp2p/go-reuseport-transport"
branch = "master"
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
TEMPORALVERSION=`git describe --tags`
TEMPORALDEVFLAGS=-config ./testenv/config.json -db.no_ssl
IPFSVERSION=v0.4.18

all: check cli

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</a>

<a href="https://github.com/RTradeLtd/Temporal/releases">
<img src="https://img.shields.io/github/release-pre/RTradeLtd/Temporal.svg?label=preview"
<img src="https://img.shields.io/github/release-pre/RTradeLtd/Temporal.svg"
alt="Release" />
</a>

Expand Down Expand Up @@ -114,6 +114,8 @@ $> curl https://raw.githubusercontent.com/RTradeLtd/Temporal/V2/temporal.yml --o
$> docker-compose -f temporal.yml up
```

The standalone Temporal Docker image is available on [Docker Hub](https://cloud.docker.com/u/rtradetech/repository/docker/rtradetech/temporal).

Refer to the `temporal.yml` documentation for more details.

### API Documentation
Expand Down
6 changes: 3 additions & 3 deletions api/v2/routes_ipns.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import (
"strings"
"time"

path "gx/ipfs/QmWqh9oob7ZHQRwU5CdTqpnC8ip8BEkFNrwXRxeNo5Y7vA/go-path"
path "gx/ipfs/QmT3rzed1ppXefourpmoZ7tyVQfsGPQZ1pHDngLmCvXxd3/go-path"

"github.com/gin-gonic/gin"

"github.com/RTradeLtd/Temporal/eh"
"github.com/RTradeLtd/Temporal/queue"
"github.com/RTradeLtd/Temporal/utils"
gocid "github.com/ipfs/go-cid"

"github.com/gin-gonic/gin"
)

// PublishToIPNSDetails is used to publish a record on IPNS with more fine grained control over typical publishing methods
Expand Down
12 changes: 5 additions & 7 deletions queue/ipns.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,15 @@ import (
"sync"
"time"

peer "gx/ipfs/QmY5Grm8pJdiSSVsYxx4uNRgweY72EmYwuSDbRnbFok3iY/go-libp2p-peer"
ci "gx/ipfs/QmPvyPwuCgJ7pDmrKDxRtsScJgBaM5h4EpRL2qQJsmXf4n/go-libp2p-crypto"
peer "gx/ipfs/QmTRhk7cgjUf2gfQ3p2M9KPECNZEW9XUrmHcFCgog4cPgB/go-libp2p-peer"

"github.com/RTradeLtd/Temporal/rtns"
pb "github.com/RTradeLtd/grpc/krab"
"github.com/streadway/amqp"

"github.com/RTradeLtd/Temporal/rtns"
"github.com/RTradeLtd/database/models"
pb "github.com/RTradeLtd/grpc/krab"
"github.com/RTradeLtd/kaas"

ci "gx/ipfs/QmNiJiXwWE3kRhZrC5ej3kSjWHm337pYfhjLGSCDNKJP2s/go-libp2p-crypto"

"github.com/streadway/amqp"
)

type contextKey string
Expand Down
11 changes: 5 additions & 6 deletions rtns/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ import (
"encoding/base64"
"time"

path "gx/ipfs/QmWqh9oob7ZHQRwU5CdTqpnC8ip8BEkFNrwXRxeNo5Y7vA/go-path"

ci "gx/ipfs/QmNiJiXwWE3kRhZrC5ej3kSjWHm337pYfhjLGSCDNKJP2s/go-libp2p-crypto"
peer "gx/ipfs/QmY5Grm8pJdiSSVsYxx4uNRgweY72EmYwuSDbRnbFok3iY/go-libp2p-peer"
config "gx/ipfs/QmcRKBUqc2p3L1ZraoJjbXfs9E6xzvEuyK9iypb5RGwfsr/go-ipfs-config"
ds "gx/ipfs/Qmf4xQhNomPNhrtZc67qSnfJSjxjXs9LWvknJtSXwimPrM/go-datastore"
config "gx/ipfs/QmPEpj17FDRpc7K1aArKZp3RsHtzRMKykeK9GVgn4WQGPR/go-ipfs-config"
ci "gx/ipfs/QmPvyPwuCgJ7pDmrKDxRtsScJgBaM5h4EpRL2qQJsmXf4n/go-libp2p-crypto"
path "gx/ipfs/QmT3rzed1ppXefourpmoZ7tyVQfsGPQZ1pHDngLmCvXxd3/go-path"
peer "gx/ipfs/QmTRhk7cgjUf2gfQ3p2M9KPECNZEW9XUrmHcFCgog4cPgB/go-libp2p-peer"
ds "gx/ipfs/QmaRb5yNXKonhbkpNxNawoydk4N6es6b4fPj19sjEKsh5D/go-datastore"

"github.com/ipfs/go-ipfs/core"
repo "github.com/ipfs/go-ipfs/repo"
Expand Down
4 changes: 2 additions & 2 deletions rtns/host_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"
"time"

ci "gx/ipfs/QmNiJiXwWE3kRhZrC5ej3kSjWHm337pYfhjLGSCDNKJP2s/go-libp2p-crypto"
peer "gx/ipfs/QmY5Grm8pJdiSSVsYxx4uNRgweY72EmYwuSDbRnbFok3iY/go-libp2p-peer"
ci "gx/ipfs/QmPvyPwuCgJ7pDmrKDxRtsScJgBaM5h4EpRL2qQJsmXf4n/go-libp2p-crypto"
peer "gx/ipfs/QmTRhk7cgjUf2gfQ3p2M9KPECNZEW9XUrmHcFCgog4cPgB/go-libp2p-peer"

"github.com/RTradeLtd/Temporal/rtns"
)
Expand Down
4 changes: 2 additions & 2 deletions vendor/github.com/RTradeLtd/crypto/.travis.yml

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

14 changes: 7 additions & 7 deletions vendor/github.com/RTradeLtd/crypto/Gopkg.lock

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

4 changes: 0 additions & 4 deletions vendor/github.com/RTradeLtd/crypto/Gopkg.toml

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

9 changes: 9 additions & 0 deletions vendor/github.com/RTradeLtd/crypto/Makefile

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

58 changes: 57 additions & 1 deletion vendor/github.com/RTradeLtd/crypto/README.md

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

0 comments on commit dc83ba0

Please sign in to comment.