mirror of https://github.com/waku-org/js-waku.git
Set first release version to 0.1.0
This commit is contained in:
parent
43627d27d8
commit
702201f7be
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -7,17 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.0] - 2021-05-13
|
||||
|
||||
### Added
|
||||
- Add usage section to the README.
|
||||
|
||||
## [1.0.0] - 2021-05-11
|
||||
|
||||
### Added
|
||||
- Support of [Waku v2 Relay](https://rfc.vac.dev/spec/11/).
|
||||
- Support of [Waku v2 Store](https://rfc.vac.dev/spec/13/).
|
||||
- [Node Chat App example](./examples/cli-chat).
|
||||
- [ReactJS Chat App example](./examples/web-chat).
|
||||
- [Typedoc Documentation](https://status-im.github.io/js-waku/docs).
|
||||
|
||||
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD
|
||||
[1.0.0]: https://github.com/olivierlacan/keep-a-changelog/compare/f46ce77f57c08866873b5c80acd052e0ddba8bc9..v1.0.0
|
||||
[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.1.0...HEAD
|
||||
[0.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/f46ce77f57c08866873b5c80acd052e0ddba8bc9..v0.1.0
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "js-waku-cli-chat",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "js-waku-cli-chat",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"dependencies": {
|
||||
"libp2p-tcp": "^0.15.4",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "js-waku-cli-chat",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"description": "A NodeJS CLI Chat App powered by js-waku",
|
||||
"main": "./index.ts",
|
||||
"repository": "https://github.com/status-im/js-waku",
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "waku-js",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "waku-js",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"dependencies": {
|
||||
"@bitauth/libauth": "^1.17.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "waku-js",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"description": "TypeScript implementation of the Waku v2 protocol",
|
||||
"main": "build/main/index.js",
|
||||
"typings": "build/main/index.d.ts",
|
||||
|
|
Loading…
Reference in New Issue