Skip to content
This repository has been archived by the owner on Sep 4, 2022. It is now read-only.

Commit

Permalink
Versionar para 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagohm committed Jan 26, 2020
1 parent f38aaab commit 1b930d7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 0.4.3

- Fixed various bugs.

## 0.4.2

- Fix SSE connection bug.
- Fixed SSE connection bug.

## 0.4.1

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In `pubspec.yaml` add the following dependency:

```yaml
dependencies:
restio: ^0.4.2
restio: ^0.4.3
```
### How to use
Expand Down Expand Up @@ -144,7 +144,7 @@ final response = await call.execute();

#### Listening for download progress:
```dart
final ProgressCallback onProgress = (response, sent, total, done) {
final ProgressCallback onProgress = (sent, total, done) {
print('sent: $sent, total: $total, done: $done');
};
Expand All @@ -162,7 +162,7 @@ await response.body.close();

#### Listening for upload progress:
```dart
final ProgressCallback onProgress = (request, sent, total, done) {
final ProgressCallback onProgress = (sent, total, done) {
print('sent: $sent, total: $total, done: $done');
};
Expand Down
2 changes: 1 addition & 1 deletion lib/src/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Restio {
assert(followRedirects != null),
adapter = adapter ?? DefaultClientAdapter();

static const version = '0.4.2';
static const version = '0.4.3';

Call newCall(Request request) {
return _Call(client: this, request: request);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: restio
description: A simple but powerful HTTP Client for Dart inspired by OkHttp.
version: 0.4.2
version: 0.4.3
homepage: https://github.com/tiagohm/restio

environment:
Expand All @@ -15,7 +15,7 @@ dependencies:
mime: ^0.9.6+3
meta: ^1.1.8
http2: ^1.0.0
equatable: ^1.0.1
equatable: ^1.0.3
raw: ^0.2.0
ip: ^0.1.1
brotli: ^0.2.2
Expand Down

0 comments on commit 1b930d7

Please sign in to comment.