Skip to content

Commit

Permalink
release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschuck committed Dec 14, 2018
1 parent 12fad63 commit 2763ee4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
8 changes: 5 additions & 3 deletions VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Next Version
### Features
### Fixes
### Deprecations

## Version 1.6.0
### Features
- add own ipfs handler
- add ipfs identification header to enable future ipfs payments
- add `defaultClaims` to `Profile` `loadActiveClaims`
Expand All @@ -11,9 +16,6 @@
- add support for permanent ENS address on payable registrar
- add support for retrieving proposals paged

### Fixes
### Deprecations

## Version 1.5.0
### Features
- add description to claims
Expand Down
4 changes: 2 additions & 2 deletions docs/dbcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"files": [
"index.html"
],
"origin": "QmZFeqCHKMBJoNQafQu8V6yx91EK1Eak4P6WsvAM16ar4G",
"origin": "QmdUGkrVQ8323o1Qu2A8fToZsXstodxHRRVjVw94JicTyK",
"primaryColor": "#1a68b7",
"secondaryColor": "#eaeaea",
"type": "library"
Expand All @@ -32,7 +32,7 @@
],
"version": "1.0.0",
"versions": {
"1.0.0": "QmRSeSip8XHaxCSC6rnKgrmVdtKPyicJvpx7q1daNqGxnL"
"1.0.0": "QmanLD3cNKuLFuB3rQJWyk93tAv63ixg6ELtVkF5zdohuc"
},
"dbcpVersion": 1
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"author": "evan GmbH",
"dependencies": {
"@evan.network/dbcp": "^1.4.2",
"@evan.network/smart-contracts-core": "^1.3.0",
"@evan.network/dbcp": "^1.4.3",
"@evan.network/smart-contracts-core": "^1.4.0",
"@types/node": "8.0.53",
"ajv": "^5.5.1",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
Expand Down Expand Up @@ -79,5 +79,5 @@
"testunitbrk": "env-cmd ./.env.local npm run build && env-cmd ./.env.local mocha --exit --inspect-brk -r ts-node/register $*"
},
"types": "./dist/index.d.ts",
"version": "1.5.0"
}
"version": "1.6.0"
}
9 changes: 5 additions & 4 deletions src/bundles/bcc/dbcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"author": "evan GmbH",
"dapp": {
"dependencies": {
"smartcontracts": "^1.3.0"
"smartcontracts": "^1.4.0"
},
"entrypoint": "bcc.js",
"files": [
"bcc.js"
],
"origin": "QmZTWYSmFqZQyMmRMwrUWP9EojKDm5FhpCDBGdGsDg9QVg",
"origin": "QmevzvXYajBKE9uRAyPdJnUwhsqTvmefdCBUC6NkACAg1F",
"type": "library"
},
"description": "Contractus for loading ens entries and it's data...",
Expand All @@ -19,7 +19,7 @@
"contractus",
"library"
],
"version": "1.5.0",
"version": "1.6.0",
"versions": {
"0.1.0": "QmTsY7ASbvxATLnEemHZQ8oQha64ujYe9VXbDCouDk7Xtp",
"0.9.0": "Qmbw3yX82TVN9WhsRyeaRpd89M9XXL1pds9GgqJL29ohar",
Expand All @@ -32,7 +32,8 @@
"1.3.0": "Qmd3BFpfGTiYGidwyfkhDRrHhSMh81PfZSbTRASkmyN3ah",
"1.3.1": "QmbQ9HskNocFPNU8wf8QrweJzidMVMbJp4gqxoWEbTLyas",
"1.4.0": "QmVv35DzcryDQnbmTVHJChD1enG459cUGKmqZj6xE74nHX",
"1.5.0": "QmQnmbZJcUf6j6u6nsJh5jiqxwAfsBybZWPk65tVN8HZ3P"
"1.5.0": "QmQnmbZJcUf6j6u6nsJh5jiqxwAfsBybZWPk65tVN8HZ3P",
"1.6.0": "QmPFbavcLHcuLb2ustTaqa1zcATnvPn4AGgW7GCmXFcfJr"
},
"dbcpVersion": 1
}
Expand Down
2 changes: 1 addition & 1 deletion src/claims/claims.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export class Claims extends Logger {
subject
);

if (!identity) {
if (identity === nullAddress) {
const msg = `trying to get claim ${claimName} with account ${subject}, ` +
`but the idendity for account ${subject} does not exist`;
this.log(msg, 'error');
Expand Down

0 comments on commit 2763ee4

Please sign in to comment.