diff --git a/CHANGELOG.md b/CHANGELOG.md index ae28b84..bc1c748 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.13.1 + +- Admin API: more account features (create, delete, update tier, api keys, ...) +- Updated admin web app +- New setting `restrictAccountWhenStorageLimitReached`, enabled by default +- Add optional log file config option +- Improve error message for restricted accounts +- Check for duplicate "email" when creating account +- Support passing admin api key as query parameter + ## 0.12.0 - **BREAKING** [sia/renterd] Change object prefix to `/s5/` diff --git a/lib/constants.dart b/lib/constants.dart index 875fee4..d62e538 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -1,5 +1,5 @@ // ! S5 node version -const nodeVersion = '0.12.0'; +const nodeVersion = '0.13.1'; // ! default chunk size for hashes const defaultChunkSize = 256 * 1024; diff --git a/pubspec.yaml b/pubspec.yaml index e0701b2..ca086bc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: s5_server description: Decentralized content-addressed storage network publish_to: none -version: 0.12.0 +version: 0.13.1 environment: sdk: ^3.0.0