Skip to content

Commit 924f29a

Browse files
authored
Merge pull request #562 from daostack/update-migration
update migration to 0.1.2-rc.8-v0
2 parents 1e484a7 + 3707195 commit 924f29a

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ services:
2626
GRAPH_GRAPHQL_MAX_FIRST: '1000'
2727

2828
ipfs:
29-
image: daostack/test-env-experimental-ipfs:4.0.22
29+
image: daostack/test-env-experimental-ipfs:4.0.24
3030
ports:
3131
- 5001:5001
3232

3333
postgres:
34-
image: daostack/test-env-experimental-postgres:4.0.22
34+
image: daostack/test-env-experimental-postgres:4.0.24
3535
ports:
3636
- 9432:5432
3737
environment:
3838
POSTGRES_PASSWORD: 'letmein'
3939

4040
ganache:
41-
image: daostack/test-env-experimental-ganache:4.0.22
41+
image: daostack/test-env-experimental-ganache:4.0.24
4242
ports:
4343
- 8545:8545

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
]
7373
},
7474
"devDependencies": {
75-
"@daostack/migration-experimental": "0.1.2-rc.7-v0",
76-
"@daostack/test-env-experimental": "4.0.22",
75+
"@daostack/migration-experimental": "0.1.2-rc.8-v0",
76+
"@daostack/test-env-experimental": "4.0.24",
7777
"@types/graphql": "^14.2.2",
7878
"@types/isomorphic-fetch": "^0.0.34",
7979
"@types/jest": "^24.0.15",

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// the version of the redeemer contract to use.
22
// we can specify multiple versions, and try to find them in the order given
3-
export const PACKAGE_VERSION = [0, 1, 7]
3+
export const PACKAGE_VERSION = [0, 1, 8]
44
export const LATEST_ARC_VERSION = `0.1.2-rc.${PACKAGE_VERSION[2]}`
55
export const ABI_DIR = './abis'
66
export const REDEEMER_CONTRACT_VERSIONS = [

test/proposal-join.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('Join', () => {
3535
const joins = await arc
3636
.plugins({where: {name: 'Join'}}).pipe(first()).toPromise()
3737

38-
const join = joins[0] as Join
38+
const join = joins[1] as Join
3939
const joinState = await join.fetchState()
4040

4141
expect(joinState.pluginParams).toMatchObject({

0 commit comments

Comments
 (0)