Commit f55d3e8a authored by Steven Allen's avatar Steven Allen

feat: release 0.5.0

parent 512050f1
This diff is collapsed.
......@@ -57,6 +57,34 @@ and modify all internal state. Use this plugin type to extend go-ipfs in
arbitrary ways. However, be aware that your plugin will likely break every time
go-ipfs updated.
## Configuration
Plugins can be configured in the `Plugins` section of the config file. Here,
plugins can be:
1. Passed an arbitrary config object via the `Config` field.
2. Disabled via the `Disabled` field.
Example:
```js
{
// ...
"Plugins": {
"Plugins": {
// plugin named "plugin-foo"
"plugin-foo": {
"Config": { /* arbitrary json */ }
},
// plugin named "plugin-bar"
"plugin-bar": {
"Disabled": true // "plugin-bar" will not be loaded
}
}
}
}
```
## Available Plugins
| Name | Type | Preloaded | Description |
......
......@@ -4,7 +4,7 @@ package ipfs
var CurrentCommit string
// CurrentVersionNumber is the current application's version literal
const CurrentVersionNumber = "0.5.0-rc4"
const CurrentVersionNumber = "0.5.0"
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment