Skip to content

Commit 2388b7c

Browse files
committed
Release version 1.9.0
1 parent bd2cd01 commit 2388b7c

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
* text=auto
22

3-
docs/ export-ignore
43
.gitattributes export-ignore
54
.gitignore export-ignore

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
### Changelog
22

3+
##### v1.9.0
4+
+ Added `whereMany` method
5+
+ Updated `limit()` method
6+
7+
> Contributed by [bmutinda](https://github.com/bmutinda) and [scheras](https://github.com/scheras). Thanks!
8+
39
##### v1.8.2
410
+ Updated `Database` class with:
511
- Minor change `__construct()` method

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use [Composer](https://getcomposer.org/)
1313

1414
```json
1515
"require": {
16-
"slim/pdo": "~1.8"
16+
"slim/pdo": "~1.9"
1717
}
1818
```
1919

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slim/pdo",
33
"description": "PDO database library for Slim Framework",
4-
"version": "1.8.2",
4+
"version": "1.9.0",
55
"type": "library",
66
"keywords": ["pdo", "database", "slim", "framework"],
77
"homepage": "https://github.com/FaaPz/Slim-PDO",

docs/Clause/LIMIT.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@
1111
```php
1212
// ... LIMIT 10
1313
$statement->limit(10);
14+
15+
// ... LIMIT 10 , 30
16+
$statement->limit(10, 30);
1417
```

docs/Clause/WHERE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ $statement->whereNull('f_name');
5555
$statement->whereNotNull('l_name');
5656

5757
// ... WHERE col_1 = ? AND col_2 = ? AND col_3 = ?
58-
$statement->whereMany( array( 'col_1' => 'val_1', 'col_2' => 'val_2', 'col_3' => 'val_3' ), '=' );
58+
$statement->whereMany(array('col_1' => 'val_1', 'col_2' => 'val_2', 'col_3' => 'val_3'), '=');
5959
```

0 commit comments

Comments
 (0)