diff --git a/.version b/.version index 089a63b..ea5bae6 100644 --- a/.version +++ b/.version @@ -1,2 +1,2 @@ -mobile=0.0.13 -cli=0.0.4 \ No newline at end of file +mobile=0.0.14 +cli=0.0.5 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 014d242..928bcef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,24 @@ # Change Log All notable changes to this project will be documented in this file. +## [v0.0.14] - 2022-1-11 + +### Added + +- [0fca1cb](https://github.com/datahop/ipfs-lite/commit/0fca1cb) Allow custom encryption +- [450c508](https://github.com/datahop/ipfs-lite/commit/450c508) Gateway added + +### Changed + +- [207e4df](https://github.com/datahop/ipfs-lite/commit/207e4df) Start takes in options rather than booleans + ## [v0.0.13] - 2021-11-27 ### Added - [6239e1e](https://github.com/datahop/ipfs-lite/commit/6239e1e) Optional passphrase based content encryption - [6708b03](https://github.com/datahop/ipfs-lite/commit/6708b03) Support for private network -- + ### Changed - [df060c1](https://github.com/datahop/ipfs-lite/commit/df060c1) zeroconf mDNS replaces libp2p mDNS diff --git a/cli/datahop.go b/cli/datahop.go index c1bb935..897779e 100644 --- a/cli/datahop.go +++ b/cli/datahop.go @@ -78,7 +78,6 @@ func main() { cmd.InitAddCmd(comm), cmd.InitIndexCmd(comm), cmd.InitRemoveCmd(comm), - cmd.InitGetCmd(comm), cmd.InitVersionCmd(comm), cmd.InitMatrixCmd(comm), cmd.InitializeDocCommand(comm), diff --git a/internal/gateway/gateway.go b/internal/gateway/gateway.go index a373f97..8627e5f 100644 --- a/internal/gateway/gateway.go +++ b/internal/gateway/gateway.go @@ -11,8 +11,6 @@ import ( "strings" "time" - "github.com/ipld/go-ipld-prime/datamodel" - "github.com/ipfs/go-blockservice" "github.com/ipfs/go-cid" bsfetcher "github.com/ipfs/go-fetcher/impl/blockservice" @@ -25,6 +23,7 @@ import ( "github.com/ipfs/interface-go-ipfs-core/path" dagpb "github.com/ipld/go-codec-dagpb" pipld "github.com/ipld/go-ipld-prime" + "github.com/ipld/go-ipld-prime/datamodel" basicnode "github.com/ipld/go-ipld-prime/node/basic" "github.com/ipld/go-ipld-prime/schema" "github.com/libp2p/go-libp2p-core/routing"