From d16634eeae3dc0c21877690472f97172fbe546f1 Mon Sep 17 00:00:00 2001 From: Jost Schulte Date: Mon, 1 May 2023 12:31:46 -0600 Subject: [PATCH] chore(release): v0.14.0 --- CHANGELOG.md | 8 +++++++- README.md | 3 ++- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b760902b..c6704f86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added ### Changed -- Set default timeout for API calls to 60 seconds. ### Fixed ### Removed +## 2023-04-15: v0.14.0 +### Changed +- Set default timeout for API calls to 60 seconds, formerly 15 seconds. +- **BREAKING CHANGE**: Replace NPM package "tweetnacl" with "@noble/ed25519". "tweetnacl" produced errors with bundlers and hasn't been updated in a longer time. +### Fixed +- **BREAKING CHANGE**: Update params of `NetworkInfoRequest`. + ## 2023-04-15: v0.13.0 ### Added - Add new Admin API endpoint `storageInfo`. diff --git a/README.md b/README.md index 3e1dd0d1..b57ce6b2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ [![Project](https://img.shields.io/badge/Project-Holochain-blue.svg?style=flat-square)](http://holochain.org/) [![Discord](https://img.shields.io/badge/Discord-DEV.HC-blue.svg?style=flat-square)](https://discord.gg/k55DS5dmPH) [![License: CAL 1.0](https://img.shields.io/badge/License-CAL%201.0-blue.svg)](https://github.com/holochain/cryptographic-autonomy-license) -![Test](https://github.com/holochain/holochain-client-js/actions/workflows/test.yml/badge.svg?branch=main) +![Integration Tests](https://github.com/holochain/holochain-client-js/actions/workflows/integration-test.yml/badge.svg?branch=main) +![Bundling Tests](https://github.com/holochain/holochain-client-js/actions/workflows/bundling-test.yml/badge.svg?branch=main) [![Twitter Follow](https://img.shields.io/twitter/follow/holochain.svg?style=social&label=Follow)](https://twitter.com/holochain) # Holochain Client - JavaScript diff --git a/package-lock.json b/package-lock.json index 4c0ee50c..37bc8612 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@holochain/client", - "version": "0.13.0", + "version": "0.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@holochain/client", - "version": "0.13.0", + "version": "0.14.0", "license": "CAL-1.0", "dependencies": { "@holochain/serialization": "^0.1.0-beta-rc.3", diff --git a/package.json b/package.json index 9adac0e7..8a4002e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@holochain/client", - "version": "0.13.0", + "version": "0.14.0", "description": "A JavaScript client for the Holochain Conductor API", "author": "Holochain Foundation (http://holochain.org)", "license": "CAL-1.0",