Skip to content

Commit 7d7a282

Browse files
authored
Merge branch 'master' into make-consistent-with-go
2 parents 3ba1be1 + 1fc2634 commit 7d7a282

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
1616
[The unixfs spec can be found inside the ipfs/specs repository](http://github.com/ipfs/specs)
1717

18+
## Lead Maintainer
19+
20+
[Alex Potsides](https://github.com/achingbrain)
21+
1822
## Table of Contents
1923

2024
- [Install](#install)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "ipfs-unixfs",
33
"version": "0.1.14",
44
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
5+
"leadMaintainer": "Alex Potsides <[email protected]>",
56
"main": "src/index.js",
67
"browser": {
78
"fs": false
@@ -24,7 +25,6 @@
2425
"keywords": [
2526
"IPFS"
2627
],
27-
"author": "David Dias <[email protected]>",
2828
"license": "MIT",
2929
"bugs": {
3030
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues"
@@ -35,7 +35,7 @@
3535
},
3636
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
3737
"devDependencies": {
38-
"aegir": "^13.1.0",
38+
"aegir": "^14.0.0",
3939
"chai": "^4.1.2",
4040
"dirty-chai": "^2.0.1",
4141
"pre-commit": "^1.2.2",

src/unixfs.proto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ module.exports = `message Data {
2020
}
2121
2222
message Metadata {
23-
required string MimeType = 1;
23+
optional string MimeType = 1;
2424
}`

0 commit comments

Comments
 (0)