1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

Merge pull request #210 from oceanprotocol/feature/keeper-0.13

bump to keeper-contracts v0.13
This commit is contained in:
Matthias Kretschmann 2020-01-23 13:28:17 +01:00 committed by GitHub
commit ebdbb04bd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 1241 additions and 833 deletions

View File

@ -33,10 +33,10 @@ env:
- IPFS_GATEWAY_URI="https://ipfs.oceanprotocol.com"
# start Barge with these versions
- BRIZO_VERSION=v0.7.2
- BRIZO_VERSION=v0.8.1
- AQUARIUS_VERSION=v1.0.5
- KEEPER_VERSION=v0.12.7
- EVENTS_HANDLER_VERSION=v0.3.4
- KEEPER_VERSION=v0.13.2
- EVENTS_HANDLER_VERSION=v0.4.4
- KEEPER_OWNER_ROLE_ADDRESS="0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"
- FAUCET_TIMESPAN=0

View File

@ -12,6 +12,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- remove editorconfig [`#211`](https://github.com/oceanprotocol/commons/pull/211)
- remove editorconfig, define all styling in prettierrc [`f8dfaa4`](https://github.com/oceanprotocol/commons/commit/f8dfaa438c42e9d6c25ae9ac096129da95e431c3)
#### [v2.1.0-beta.0](https://github.com/oceanprotocol/commons/compare/v2.0.0...v2.1.0-beta.0)
> 17 December 2019
- bump to keeper-contracts v0.13.0 [`c4219bf`](https://github.com/oceanprotocol/commons/commit/c4219bf1a839e88024c3b7a87f95833b40769d58)
#### [v2.0.0](https://github.com/oceanprotocol/commons/compare/v2.0.0-beta.3...v2.0.0)
> 9 December 2019

2044
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"name": "commons-client",
"description": "Ocean Protocol marketplace frontend to explore, download, and publish open data sets.",
"version": "2.0.1",
"version": "2.1.0-beta.0",
"license": "Apache-2.0",
"scripts": {
"start": "react-scripts start",
@ -14,7 +14,7 @@
},
"dependencies": {
"@oceanprotocol/art": "^2.2.0",
"@oceanprotocol/squid": "^1.0.0",
"@oceanprotocol/squid": "^1.1.0",
"@oceanprotocol/typographies": "^0.1.0",
"@sindresorhus/slugify": "^0.9.1",
"@truffle/hdwallet-provider": "^1.0.26",

View File

@ -7,11 +7,11 @@
"dependencies": [
{
"name": "keeper-contracts",
"version": "~0.12.7"
"version": "~0.13.2"
},
{
"name": "brizo",
"version": "~0.7.2"
"version": "~0.8.1"
},
{
"name": "aquarius",
@ -19,7 +19,7 @@
},
{
"name": "squid-js",
"version": "~1.0.0"
"version": "~1.1.0"
},
{
"name": "faucet",

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "commons",
"version": "2.0.1",
"version": "2.1.0-beta.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "commons",
"description": "Ocean Protocol marketplace to explore, download, and publish open data sets.",
"version": "2.0.1",
"version": "2.1.0-beta.0",
"license": "Apache-2.0",
"scripts": {
"install": "./scripts/install.sh",

View File

@ -1,6 +1,6 @@
{
"name": "commons-server",
"version": "2.0.1",
"version": "2.1.0-beta.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "commons-server",
"description": "Ocean Protocol marketplace backend.",
"version": "2.0.1",
"version": "2.1.0-beta.0",
"license": "Apache-2.0",
"main": "dist/src/server.js",
"scripts": {