Skip to content

Commit

Permalink
Merge pull request #562 from daostack/update-migration
Browse files Browse the repository at this point in the history
update migration to 0.1.2-rc.8-v0
  • Loading branch information
roienatan authored Nov 7, 2020
2 parents 1e484a7 + 3707195 commit 924f29a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ services:
GRAPH_GRAPHQL_MAX_FIRST: '1000'

ipfs:
image: daostack/test-env-experimental-ipfs:4.0.22
image: daostack/test-env-experimental-ipfs:4.0.24
ports:
- 5001:5001

postgres:
image: daostack/test-env-experimental-postgres:4.0.22
image: daostack/test-env-experimental-postgres:4.0.24
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: 'letmein'

ganache:
image: daostack/test-env-experimental-ganache:4.0.22
image: daostack/test-env-experimental-ganache:4.0.24
ports:
- 8545:8545
36 changes: 18 additions & 18 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
]
},
"devDependencies": {
"@daostack/migration-experimental": "0.1.2-rc.7-v0",
"@daostack/test-env-experimental": "4.0.22",
"@daostack/migration-experimental": "0.1.2-rc.8-v0",
"@daostack/test-env-experimental": "4.0.24",
"@types/graphql": "^14.2.2",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^24.0.15",
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// the version of the redeemer contract to use.
// we can specify multiple versions, and try to find them in the order given
export const PACKAGE_VERSION = [0, 1, 7]
export const PACKAGE_VERSION = [0, 1, 8]
export const LATEST_ARC_VERSION = `0.1.2-rc.${PACKAGE_VERSION[2]}`
export const ABI_DIR = './abis'
export const REDEEMER_CONTRACT_VERSIONS = [
Expand Down
2 changes: 1 addition & 1 deletion test/proposal-join.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Join', () => {
const joins = await arc
.plugins({where: {name: 'Join'}}).pipe(first()).toPromise()

const join = joins[0] as Join
const join = joins[1] as Join
const joinState = await join.fetchState()

expect(joinState.pluginParams).toMatchObject({
Expand Down

0 comments on commit 924f29a

Please sign in to comment.