diff --git a/CHANGELOG.md b/CHANGELOG.md index afd64d5..e857d28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.11.0 + +- Add support for WebSocket p2p connections and use them by default if a domain is configured +- Update to Dart 3.0.0 and dependencies +- New file streaming implementation +- Add admin key rotation using the config file (increment `http.api.admin.keyRotation`) +- Add GitHub Actions CI for docker builds (thanks @lukehmcc) +- Fixes for the Sia object store +- Other bug fixes + ## 0.10.0 - Added new **admin API** for account management diff --git a/lib/constants.dart b/lib/constants.dart index 44b4ccf..d6d1978 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -1,5 +1,5 @@ // ! S5 node version -const nodeVersion = '0.10.0'; +const nodeVersion = '0.11.0'; // ! default chunk size for hashes const defaultChunkSize = 256 * 1024;