Skip to content

Commit

Permalink
Merge pull request #359 from j4mie/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
treffynnon authored Apr 29, 2020
2 parents ee3022f + 997a1e3 commit d23f970
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Idiorm
[http://j4mie.github.com/idiormandparis/](http://j4mie.github.com/idiormandparis/)

---
### Feature complete
### Feature/API complete

Idiorm is now considered to be feature complete as of version 1.5.0. Whilst it will continue to be maintained with bug fixes there will be no further new features added from this point on.
Idiorm is now considered to be feature complete as of version 1.5.0. Whilst it will continue to be maintained with bug fixes there will be no further new features added from this point on. This means that if a pull request makes breaking changes to the API or requires anything other than a patch version bump of the library then it will not be merged.

**Please do not submit feature requests or pull requests adding new features as they will be closed without ceremony.**
**Please do not submit feature requests or API breaking changes as they will be closed without ceremony.**

---

Expand Down Expand Up @@ -85,6 +85,11 @@ is a Docker setup in `./test/docker_for_php52` - check the readme in there for m

Changelog
---------

#### 1.5.7 - released 2020-04-29

* Fix argument order in call to join() [[CatalinFrancu](https://github.com/CatalinFrancu)] - [issue #357](https://github.com/j4mie/idiorm/pull/357)

#### 1.5.6 - released 2018-05-31

* Assign `null` to `self::$_db` on `reset_db()` to ensure PDO closes the connections [[bleakgadfly](https://github.com/bleakgadfly)] - [issue #338](https://github.com/j4mie/idiorm/issues/338)
Expand Down
2 changes: 1 addition & 1 deletion idiorm.php
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ public function where_any_is($values, $operator='=') {
}
}
$query[] = "))";
return $this->where_raw(join($query, ' '), $data);
return $this->where_raw(join(' ', $query), $data);
}

/**
Expand Down

0 comments on commit d23f970

Please sign in to comment.