Compare commits

..

3 Commits

Author SHA1 Message Date
411cb7af43 chore: release version v0.8.0 2020-12-10 14:24:11 +01:00
e544053518 chore: update contributors 2020-12-10 14:24:10 +01:00
dc33912bf9 chore: remove old pre release script 2020-12-10 14:13:29 +01:00
3 changed files with 2 additions and 11 deletions

View File

@ -1,12 +1,3 @@
## [0.8.1](https://github.com/libp2p/js-interfaces/compare/v0.8.0...v0.8.1) (2020-12-11)
### Bug Fixes
* pubsub publish message should be uint8array ([#77](https://github.com/libp2p/js-interfaces/issues/77)) ([5b99e6b](https://github.com/libp2p/js-interfaces/commit/5b99e6b56b10439a82ee88fb4e31fb95c182264f))
# [0.8.0](https://github.com/libp2p/js-interfaces/compare/v0.7.2...v0.8.0) (2020-12-10)

View File

@ -1,6 +1,6 @@
{
"name": "libp2p-interfaces",
"version": "0.8.1",
"version": "0.8.0",
"description": "Interfaces for JS Libp2p",
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
"main": "src/index.js",

View File

@ -644,7 +644,7 @@ class PubsubBaseProtocol extends EventEmitter {
*
* @override
* @param {string} topic
* @param {Uint8Array} message
* @param {Buffer} message
* @returns {Promise<void>}
*/
async publish (topic, message) {