Skip to content

Commit b5c02c5

Browse files
author
WooSignal
committed
Updated pubspec.yaml and header changes
1 parent ff95ea1 commit b5c02c5

20 files changed

+48
-42
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.1.3] - 2020-06-03
2+
3+
* pubspec.yaml update
4+
15
## [0.1.2] - 2020-05-01
26

37
* Readme update

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2020, WooSignal
3+
Copyright (c) 2020, WooSignal Ltd
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In your flutter project add the dependency:
2525
``` dart
2626
dependencies:
2727
...
28-
wp_json_api: ^0.1.2
28+
wp_json_api: ^0.1.3
2929
```
3030

3131
### Usage example #

example/pubspec.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,42 +7,42 @@ packages:
77
name: archive
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.0.11"
10+
version: "2.0.13"
1111
args:
1212
dependency: transitive
1313
description:
1414
name: args
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "1.5.2"
17+
version: "1.6.0"
1818
async:
1919
dependency: transitive
2020
description:
2121
name: async
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "2.4.0"
24+
version: "2.4.1"
2525
boolean_selector:
2626
dependency: transitive
2727
description:
2828
name: boolean_selector
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "1.0.5"
31+
version: "2.0.0"
3232
charcode:
3333
dependency: transitive
3434
description:
3535
name: charcode
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "1.1.2"
38+
version: "1.1.3"
3939
collection:
4040
dependency: transitive
4141
description:
4242
name: collection
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.14.11"
45+
version: "1.14.12"
4646
convert:
4747
dependency: transitive
4848
description:
@@ -56,7 +56,7 @@ packages:
5656
name: crypto
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "2.1.3"
59+
version: "2.1.4"
6060
flutter:
6161
dependency: "direct main"
6262
description: flutter
@@ -87,7 +87,7 @@ packages:
8787
name: image
8888
url: "https://pub.dartlang.org"
8989
source: hosted
90-
version: "2.1.4"
90+
version: "2.1.12"
9191
matcher:
9292
dependency: transitive
9393
description:
@@ -129,7 +129,7 @@ packages:
129129
name: quiver
130130
url: "https://pub.dartlang.org"
131131
source: hosted
132-
version: "2.0.5"
132+
version: "2.1.3"
133133
sky_engine:
134134
dependency: transitive
135135
description: flutter
@@ -141,7 +141,7 @@ packages:
141141
name: source_span
142142
url: "https://pub.dartlang.org"
143143
source: hosted
144-
version: "1.5.5"
144+
version: "1.7.0"
145145
stack_trace:
146146
dependency: transitive
147147
description:
@@ -197,13 +197,13 @@ packages:
197197
path: ".."
198198
relative: true
199199
source: path
200-
version: "0.0.2"
200+
version: "0.1.2"
201201
xml:
202202
dependency: transitive
203203
description:
204204
name: xml
205205
url: "https://pub.dartlang.org"
206206
source: hosted
207-
version: "3.5.0"
207+
version: "3.6.1"
208208
sdks:
209-
dart: ">=2.4.0 <3.0.0"
209+
dart: ">=2.6.0 <3.0.0"

lib/enums/WPAuthType.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

lib/enums/WPRouteType.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

lib/helpers/typedefs.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

lib/models/responses/WCCustomerInfoResponse.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

lib/models/responses/WCCustomerUpdatedResponse.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

lib/models/responses/WPNonceResponse.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, WooSignal.
1+
// Copyright (c) 2020, WooSignal Ltd.
22
// All rights reserved.
33
//
44
// Redistribution and use in source and binary forms are permitted

0 commit comments

Comments
 (0)