Skip to content

Commit

Permalink
🔖 prepare for 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BirjuVachhani committed Aug 31, 2020
1 parent 443fcf3 commit a1c0f71
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/).
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
![banner](banner.png)

<br/>


# Screwdriver

A dart package aiming to provide useful extensions and helper functions to ease and speed up development.

[![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)

<br/>


- 📋 Well Documented
- ⚔️ Fully Tested
Expand All @@ -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].

<br/>


## Installation

Expand All @@ -45,7 +45,7 @@ import 'package:screwdriver/screwdriver.dart';
import 'package:screwdriver/screwdriver_io.dart';
```

<br/>


A Glimpse of Screwdriver

Expand All @@ -64,7 +64,7 @@ A Glimpse of Screwdriver
'#hello'.removePrefix('#'); // hello
```

<br/>


#### Int

Expand All @@ -76,7 +76,7 @@ A Glimpse of Screwdriver
10.repeat((count) => print(count));
```

<br/>


#### DateTime & Duration

Expand All @@ -91,7 +91,7 @@ now().previousDay; // yesterday
10.days.ago.isBetween(15.days.ago, now()); // true
```

<br/>


#### Double and Bool

Expand All @@ -103,7 +103,7 @@ false.toInt(); // 0
```

<br/>


#### Scope Functions

Expand All @@ -115,7 +115,7 @@ final User user = User(name: 'John').apply((user){
final String age = user.run((u)=> (u.age + 20).toString());
```

<br/>


#### Collections

Expand All @@ -133,7 +133,7 @@ cars.intersect(otherCars);
{'name': 'John'} << Pair('email','[email protected]');
```

<br/>


#### Future

Expand All @@ -143,7 +143,7 @@ postDelayed(2000,(){
});
```

<br/>


#### IO

Expand All @@ -156,7 +156,7 @@ file << 'some text';
file1 + file2; // appends file2 content at the end of file1
```

<br/>


#### Some More

Expand All @@ -173,11 +173,11 @@ final DateTime date = tomorrow;
yesterday.isInDecember;
```

<br/>


Checkout [documentation][docs]

<br/>


## Features and bugs

Expand All @@ -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/

<br/>


#### Liked Screwdriver?

Expand All @@ -196,7 +196,7 @@ Or You can

<a href="https://www.buymeacoffee.com/birjuvachhani" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-blue.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>

<br/>


## License

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit a1c0f71

Please sign in to comment.