Skip to content

Commit

Permalink
Merge pull request #13 from edufolly/dev
Browse files Browse the repository at this point in the history
Version 0.1.2.
  • Loading branch information
edufolly authored Jun 30, 2023
2 parents cc3b930 + f74d218 commit 927b851
Show file tree
Hide file tree
Showing 6 changed files with 222 additions and 185 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
timeout-minutes: 3
run: dart pub get

# - name: Dart Analyze
# timeout-minutes: 3
# run: dart analyze --fatal-infos
- name: Dart Analyze
timeout-minutes: 3
run: dart analyze --fatal-infos

- name: Dart Test
run: dart test
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.2 (2023-06-29)

- Removing http package dependency.
- Adding testainer package.

## 0.1.1 (2023-06-24)

- Creating openssl config for Linux.
Expand Down
19 changes: 0 additions & 19 deletions helpers/basic_test_result.dart

This file was deleted.

4 changes: 2 additions & 2 deletions helpers/package.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ void main() {
'name': 'curt',
'rootUri': '../',
'packageUri': 'lib/',
'languageVersion': '2.19',
'languageVersion': '3.0',
};

final Map<String, dynamic> package = <String, dynamic>{
'configVersion': 2,
'packages': <Map<String, String>>[curt],
'generated': DateTime.now().toIso8601String(),
'generator': 'pub',
'generatorVersion': '2.19.0',
'generatorVersion': '3.0.0',
};

File('coverage/package.json')
Expand Down
7 changes: 4 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
name: curt
description: Simple wrapper for curl in dart.
version: 0.1.1
version: 0.1.2
repository: https://github.com/edufolly/curt

environment:
sdk: '>=2.19.0 <4.0.0'

dependencies:
http: '>=0.13.5 <1.1.0'

intl: '>=0.17.0 <1.0.0'

dev_dependencies:
Expand All @@ -23,3 +21,6 @@ dev_dependencies:

# https://pub.dev/packages/test
test: ^1.24.0

# https://pub.dev/packages/testainers
testainers: ^0.0.1
Loading

0 comments on commit 927b851

Please sign in to comment.