Skip to content

Commit c5e88fe

Browse files
committed
Version 0.10.0
1 parent 0810897 commit c5e88fe

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.10.0
2+
3+
- Added new admin API for account management
4+
- `auth_token` can now be passed as query parameter for all endpoints
5+
- Added `deleteCID` method
6+
- Improved tus upload auth
7+
- accounts: New "invite code" feature for registration
8+
- accounts: Moved API endpoints (removed subdomain requirement)
9+
- accounts: Improved pinning API
10+
111
## 0.9.2
212

313
- Add support for the **Sia storage network** using **renterd**

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ At its core, S5 is a content-addressed storage network similar to IPFS and also
2121

2222
## Usage
2323

24-
`docker run -it --rm -p 5050:5050 -v /local/path/to/config:/config --name s5-node ghcr.io/s5-dev/node:0.9.2`
24+
`docker run -it --rm -p 5050:5050 -v /local/path/to/config:/config --name s5-node ghcr.io/s5-dev/node:0.10.0`
2525

2626
A basic config file is generated for you, just make sure the path to the directory exists.
2727

@@ -30,7 +30,7 @@ Or run it with docker compose
3030
version: '3'
3131
services:
3232
s5-node:
33-
image: ghcr.io/s5-dev/node:0.9.2
33+
image: ghcr.io/s5-dev/node:0.10.0
3434
volumes:
3535
- /local/path/to/config:/config
3636
ports:

lib/constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ! S5 node version
2-
const nodeVersion = '0.9.2';
2+
const nodeVersion = '0.10.0';
33

44
// ! default chunk size for hashes
55
const defaultChunkSize = 256 * 1024;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: s5_server
22
description: Decentralized content-addressed storage network
33
publish_to: none
4-
version: 0.9.2
4+
version: 0.10.0
55

66
environment:
77
sdk: ">=2.18.2 <3.0.0"

0 commit comments

Comments
 (0)