diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e9189..46f77e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 + +- Fix pub.dev warnings. + ## 1.0.0 - Initial release. checkout documentation [here](https://pub.dev/documentation/screwdriver/1.0.0/). diff --git a/README.md b/README.md index f47b39a..c1d61a9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![banner](banner.png) -
+ # Screwdriver @@ -8,7 +8,7 @@ A dart package aiming to provide useful extensions and helper functions to ease [![Tests](https://github.com/BirjuVachhani/screwdriver/workflows/Tests/badge.svg?branch=master)](https://github.com/BirjuVachhani/screwdriver/actions) [![Code Quality](https://github.com/BirjuVachhani/screwdriver/workflows/Code%20Quality/badge.svg?branch=master)](https://github.com/BirjuVachhani/screwdriver/actions) [![Codecov](https://img.shields.io/codecov/c/github/birjuvachhani/screwdriver.svg)](https://codecov.io/gh/birjuvachhani/screwdriver) -
+ - 📋 Well Documented - ⚔️ Fully Tested @@ -22,7 +22,7 @@ A dart package aiming to provide useful extensions and helper functions to ease To checkout all the available extensions, helper functions & classes, see [documentation][docs]. -
+ ## Installation @@ -45,7 +45,7 @@ import 'package:screwdriver/screwdriver.dart'; import 'package:screwdriver/screwdriver_io.dart'; ``` -
+ A Glimpse of Screwdriver @@ -64,7 +64,7 @@ A Glimpse of Screwdriver '#hello'.removePrefix('#'); // hello ``` -
+ #### Int @@ -76,7 +76,7 @@ A Glimpse of Screwdriver 10.repeat((count) => print(count)); ``` -
+ #### DateTime & Duration @@ -91,7 +91,7 @@ now().previousDay; // yesterday 10.days.ago.isBetween(15.days.ago, now()); // true ``` -
+ #### Double and Bool @@ -103,7 +103,7 @@ false.toInt(); // 0 ``` -
+ #### Scope Functions @@ -115,7 +115,7 @@ final User user = User(name: 'John').apply((user){ final String age = user.run((u)=> (u.age + 20).toString()); ``` -
+ #### Collections @@ -133,7 +133,7 @@ cars.intersect(otherCars); {'name': 'John'} << Pair('email','john@doe.com'); ``` -
+ #### Future @@ -143,7 +143,7 @@ postDelayed(2000,(){ }); ``` -
+ #### IO @@ -156,7 +156,7 @@ file << 'some text'; file1 + file2; // appends file2 content at the end of file1 ``` -
+ #### Some More @@ -173,11 +173,11 @@ final DateTime date = tomorrow; yesterday.isInDecember; ``` -
+ Checkout [documentation][docs] -
+ ## Features and bugs @@ -186,7 +186,7 @@ Please file feature requests and bugs at the [issue tracker][tracker]. [tracker]: https://github.com/BirjuVachhani/screwdriver/issues [docs]: https://pub.dev/documentation/screwdriver/latest/ -
+ #### Liked Screwdriver? @@ -196,7 +196,7 @@ Or You can Buy Me A Coffee -
+ ## License diff --git a/pubspec.yaml b/pubspec.yaml index 2539d64..0bd9405 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: screwdriver description: A dart package aiming to provide useful extensions and helper functions to ease and speed up development. -version: 1.0.0 +version: 1.0.1 homepage: https://github.com/birjuvachhani/screwdriver environment: