Skip to content

Commit 8792521

Browse files
committed
Bump version
1 parent df2ee22 commit 8792521

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.3
2+
3+
* Fixed `getCookies()` without a URL parameter causes NullPointerExceptions ([#11](https://github.com/amag2511/webview_cookie_manager/issues/8))
4+
* Added `hasCookies()` function
5+
* Added `removeCookie()` function
6+
17
## 1.0.2
28

39
* Fixed Android Cookiemanager null reference exception ([#8](https://github.com/amag2511/webview_cookie_manager/issues/8))

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ await cookieManager.setCookies([
2828
..httpOnly = false
2929
]);
3030
```
31+
Check is any cookie available
32+
```dart
33+
await cookieManager.hasCookies();
34+
```
35+
36+
Remove cookie
37+
38+
```dart
39+
await cookieManager.removeCookie();
40+
```
41+
3142
Clear cookies
3243
```dart
3344
await cookieManager.clearCookies();

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webview_cookie_manager
22
description: Have you been turned into a cookie managment problem? This package can help. It has all of the cookie managment functionality you have been looking for.
3-
version: 1.0.2
3+
version: 1.0.3
44
repository: https://github.com/amag2511/webview_cookie_manager
55
homepage: https://github.com/amag2511/webview_cookie_manager
66
issue_tracker: https://github.com/amag2511/webview_cookie_manager/issues

0 commit comments

Comments
 (0)