Skip to content

Commit

Permalink
Merge pull request #132 from mediachain/vyzo-release
Browse files Browse the repository at this point in the history
v1.6 release
  • Loading branch information
vyzo authored Feb 13, 2017
2 parents 7d733be + a6cf04e commit cdda8bb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 13/2/2017: concat-v1.6
- Directory extensions for manifest lookup [[PR #125]](https://github.com/mediachain/concat/pull/125)
- Peer discovery through DHT rendezvous [[PR #128]](https://github.com/mediachain/concat/pull/128)
- mcid usabililty improvements [[PR #124]](https://github.com/mediachain/concat/pull/124)
- Statement DB vacuum support [[PR #130]](https://github.com/mediachain/concat/pull/130)
- Misc fixes and improvements
- version command for binaries [[PR #122]](https://github.com/mediachain/concat/pull/122)
- Add LIMIT clause to MCQL DELETE [[PR #129]](https://github.com/mediachain/concat/pull/129)
- Update rocksdb, disable concurrent memtable writing which is no longer supported with point lookup optimizations [[PR #126]](https://github.com/mediachain/concat/pull/126)

## 17/1/2017: concat-v1.5
- Mediachain identity [[PR #110]](https://github.com/mediachain/concat/pull/110) [[PR #112]](https://github.com/mediachain/concat/pull/112) [[PR #118]](https://github.com/mediachain/concat/pull/118)
- Node manifests [[PR #116]](https://github.com/mediachain/concat/pull/116)
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,8 @@ A REST API is provided for controlling the node. This is an administrative inter
* `POST /merge/{peerId}` -- query a peer and merge the resulting statements and metadata
* `POST /push/{peerId}` -- issue a local query and push the resulting statements to a remote peer.
* `POST /delete` -- delete statements matching this MCQL DELETE query
* `POST vacuum/incremental` -- perform an incremental statement db vacuum
* `POST vacuum/full` -- perform a full statement db vacuum
* `POST /data/put` -- add a batch of data objects to datastore
* `POST /data/get` -- get a batch of objects from the datastore
* `GET /data/get/{objectId}` -- get a single object from the datastore; 404 semantics
Expand All @@ -400,6 +402,7 @@ A REST API is provided for controlling the node. This is an administrative inter
* `GET /dir/list` -- list all peers registered with the directory
* `GET /dir/list/{namespace}` -- list peers providing namespace in the directory
* `GET /dir/listns` -- list namespaces in the directory
* `GET /dir/listmf/{entity}` -- list manifests in the directory for entity
* `GET /net/addr` -- list self addresses
* `GET /net/addr/{peerId}` -- list known addresses for peer
* `GET /net/conns` -- list active peer connections
Expand Down
2 changes: 1 addition & 1 deletion mc/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
p2p_id "github.com/libp2p/go-libp2p/p2p/protocol/identify"
)

const ConcatVersion = "1.6-DEV"
const ConcatVersion = "1.6"
const Libp2pVersion = "go-libp2p/4.3.1"

func SetLibp2pClient(prog string) {
Expand Down

0 comments on commit cdda8bb

Please sign in to comment.