Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Metadata update #219

Merged
merged 3 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@

```yaml
dependencies:
alice: ^1.0.0-dev8
alice: ^1.0.0-dev9
```

2. Choose adapter based on your HTTP client. **pubspec.yaml** file:

### Dio
```yaml
dependencies:
alice_dio: ^1.0.3
alice_dio: ^1.0.4
```

### Chopper
```yaml
dependencies:
alice_chopper: ^1.0.3
alice_chopper: ^1.0.5
```

### Http
```yaml
dependencies:
alice_http: ^1.0.3
alice_http: ^1.0.4
```

### Http Client
```yaml
dependencies:
alice_http_client: ^1.0.3
alice_http_client: ^1.0.4
```

3. Run `get` command:
Expand Down
1 change: 1 addition & 0 deletions packages/alice/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Added unit tests.
* Updated CI/CD task for tests.
* General refactor of code base.
* Updated metadata.

# 1.0.0-dev.8
* Added storage abstractions (by Klemen Tusar https://github.com/techouse).
Expand Down
1 change: 1 addition & 0 deletions packages/alice/lib/alice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import 'package:flutter/widgets.dart';
export 'package:alice/core/alice_store.dart';
export 'package:alice/model/alice_log.dart';
export 'package:alice/core/alice_memory_storage.dart';
export 'package:alice/utils/alice_parser.dart';

class Alice {
/// Should user be notified with notification when there's new request caught
Expand Down
7 changes: 7 additions & 0 deletions packages/alice/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ description: Alice is an HTTP Inspector tool which helps debugging http requests
version: 1.0.0-dev.9
homepage: https://github.com/jhomlala/alice
repository: https://github.com/jhomlala/alice
topics:
jhomlala marked this conversation as resolved.
Show resolved Hide resolved
- http
- inspector
- dio
- chopper
- interceptor
- alice

environment:
sdk: ^3.0.0
Expand Down
5 changes: 5 additions & 0 deletions packages/alice_chopper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.5
* Untrack gitignored files.
* Updated metadata.
* Updated dependencies.

# 1.0.4

* Create error log on http exception (by Klemen Tusar https://github.com/techouse).
Expand Down
10 changes: 8 additions & 2 deletions packages/alice_chopper/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: alice_chopper
description: "Alice + Chopper integration. It contains plugin for Alice which allows to use Chopper package."
version: 1.0.4
version: 1.0.5
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics:
- http
- inspector
- alice
- chopper
- interceptor

environment:
sdk: '>=3.4.1 <4.0.0'
flutter: ">=3.3.0"

dependencies:
alice: ^1.0.0-dev.6
alice: ^1.0.0-dev.9
chopper: ^8.0.0
http: ^1.2.1
uuid: ^4.4.0
Expand Down
6 changes: 6 additions & 0 deletions packages/alice_dio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.4

* Untrack gitignored files.
* Updated metadata.
* Updated dependencies.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
8 changes: 7 additions & 1 deletion packages/alice_dio/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ description: "Alice + Dio integration. It contains plugin for Alice which allows
version: 1.0.3
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics:
- http
- inspector
- dio
- interceptor
- alice

environment:
sdk: '>=3.4.1 <4.0.0'
flutter: ">=3.3.0"

dependencies:
alice: ^1.0.0-dev.6
alice: ^1.0.0-dev.9
dio: ^5.4.3+1
flutter:
sdk: flutter
Expand Down
6 changes: 6 additions & 0 deletions packages/alice_http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.4

* Untracked gitignored files.
* Updated metadata.
* Updated dependencies.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
9 changes: 7 additions & 2 deletions packages/alice_http/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
name: alice_http
description: "Alice + HTTP integration. It contains plugin for Alice which allows to use http package."
version: 1.0.3
version: 1.0.4
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics:
- http
- inspector
- alice
- interceptor

environment:
sdk: '>=3.4.1 <4.0.0'
flutter: ">=3.3.0"

dependencies:
alice: ^1.0.0-dev.6
alice: ^1.0.0-dev.9
http: ^1.2.1

dev_dependencies:
Expand Down
6 changes: 6 additions & 0 deletions packages/alice_http_client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.4

* Untracked gitignored files.
* Updated metadata.
* Updated dependencies.

# 1.0.3

* Changed linter from very good analysis to flutter lints.
Expand Down
9 changes: 7 additions & 2 deletions packages/alice_http_client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
name: alice_http_client
description: "Alice + HTTP Client integration. It contains plugin for Alice which allows to use Http Client."
version: 1.0.3
version: 1.0.4
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics:
- http
- inspector
- alice
- interceptor

environment:
sdk: '>=3.4.1 <4.0.0'
flutter: ">=3.3.0"

dependencies:
alice: ^1.0.0-dev.6
alice: ^1.0.0-dev.9

dev_dependencies:
flutter_lints: ^4.0.0
8 changes: 7 additions & 1 deletion packages/alice_objectbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0
# 1.0.1

* Updated documentation.
* Updated metadata.
* Updated dependencies.

# 1.0.0

- Initial version.
10 changes: 8 additions & 2 deletions packages/alice_objectbox/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: alice_objectbox
description: "Alice + ObjectBox integration. It contains a plugin for Alice which stores http requests and responses in an ObjectBox NoSQL database."
version: 1.0.0
version: 1.0.1
repository: https://github.com/jhomlala/alice
homepage: https://github.com/jhomlala/alice
topics:
- http
- inspector
- alice
- interceptor
- objectbox

environment:
sdk: ^3.0.0
Expand All @@ -11,7 +17,7 @@ environment:
dependencies:
flutter:
sdk: flutter
alice: ^1.0.0-dev.8
alice: ^1.0.0-dev.9
json_annotation: ^4.9.0
meta: ^1.9.1
objectbox: ^4.0.1
Expand Down
Loading