diff --git a/CHANGELOG.md b/CHANGELOG.md index 5788b0706..04f1966b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ + +# [0.3.2](https://github.com/qri-io/qri/compare/v0.3.1...v0.3.2) (2018-05-15) + + +### Bug Fixes + +* **core.profile:** fixing bug in SetPosterPhoto and SetProfilePhoto ([8cbed3a](https://github.com/qri-io/qri/commit/8cbed3a)) +* **handleDatasetsList:** peer's datasets not returning fully hydrated ([b755554](https://github.com/qri-io/qri/commit/b755554)) +* **profile.MemStore:** address race condition ([58ece89](https://github.com/qri-io/qri/commit/58ece89)) +* **registry:** make registry post & deletes actually work ([f71eec6](https://github.com/qri-io/qri/commit/f71eec6)) +* **SetProfile:** peer should be able to remove name, email, description, homeurl, and twitter ([6f4cc1e](https://github.com/qri-io/qri/commit/6f4cc1e)) +* **setup:** fix config not loading if already found ([190f2c7](https://github.com/qri-io/qri/commit/190f2c7)) +* **test_repo:** added field `Type: "peer"` to test repo profile ([8478462](https://github.com/qri-io/qri/commit/8478462)) + + +### Features + +* **cmd.peers:** merge connections command into peers list command ([a3fe649](https://github.com/qri-io/qri/commit/a3fe649)) +* **core.GetProfile:** add naive online indicator if P2P is enabled ([84ccc24](https://github.com/qri-io/qri/commit/84ccc24)) +* **p2p:** Tag qri peers in connManager ([2f4b1fd](https://github.com/qri-io/qri/commit/2f4b1fd)) +* **peer connections:** single peer connection control ([ab7e035](https://github.com/qri-io/qri/commit/ab7e035)) +* **Profile Info, Connections:** verbose profile info, better explicit conn mgmt ([eb01247](https://github.com/qri-io/qri/commit/eb01247)) +* **profiles:** transition to online-first display, announce ntwk joins ([f712080](https://github.com/qri-io/qri/commit/f712080)) +* **registry.Datasets:** initial dataset registry integration ([58d64c2](https://github.com/qri-io/qri/commit/58d64c2)), closes [#397](https://github.com/qri-io/qri/issues/397) +* **render:** add render command for executing templates against datasets ([607104d](https://github.com/qri-io/qri/commit/607104d)) +* **repo:** merge repos' EventLogs using a simple first attempt ([e5997bb](https://github.com/qri-io/qri/commit/e5997bb)) +* **repo.Registry:** add registry to repo interface ([9bcb303](https://github.com/qri-io/qri/commit/9bcb303)) + + + # [0.3.1](https://github.com/qri-io/qri/compare/v0.3.0...v0.3.1) (2018-04-25) diff --git a/cmd/version.go b/cmd/version.go index 4d688f2ae..41e2746c4 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -3,7 +3,7 @@ package cmd import "github.com/spf13/cobra" // VersionNumber is the current version qri -const VersionNumber = "0.3.2-dev" +const VersionNumber = "0.3.2" // versionCmd represents the version command var versionCmd = &cobra.Command{ diff --git a/config/webapp.go b/config/webapp.go index 405e06fbb..1d8008561 100644 --- a/config/webapp.go +++ b/config/webapp.go @@ -27,7 +27,7 @@ func DefaultWebapp() *Webapp { Enabled: true, Port: DefaultWebappPort, EntrypointUpdateAddress: "/ipns/webapp.qri.io", - EntrypointHash: "QmQWPz5xh9jn9vkeC5par84wkqbhCupHJLu9auZ3qsLJvy", + EntrypointHash: "Qmd7y8YyUcaDwTAhi5zxGUX2JZho5ZQstaN7qhTiWWnGR8", } } diff --git a/p2p/p2p.go b/p2p/p2p.go index eae471041..dc23de789 100644 --- a/p2p/p2p.go +++ b/p2p/p2p.go @@ -16,7 +16,7 @@ const ( // QriProtocolID is the top level Protocol Identifier QriProtocolID = protocol.ID("/qri") // QriServiceTag tags the type & version of the qri service - QriServiceTag = "qri/0.3.2-dev" + QriServiceTag = "qri/0.3.2" // tag qri service uses in host connection Manager qriConnManagerTag = "qri" // default value to give qri peer connections in connmanager