Skip to content

Commit

Permalink
Prepare 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
curry684 committed Aug 9, 2019
1 parent b7c356d commit 5475a34
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
Nothing yet.

## [0.3.1] - 2019.08-09
### Added
- Update the url used for ajax request on each init. (#75)

### Fixed
- Fix array filtering (#88)

## [0.3.0] - 2019-05-14
### Added
- Add DataTable events (#76)
Expand Down Expand Up @@ -81,7 +88,8 @@ Nothing yet.
### Added
- Basic functionality

[Unreleased]: https://github.com/omines/datatables-bundle/compare/0.3.0...master
[Unreleased]: https://github.com/omines/datatables-bundle/compare/0.3.1...master
[0.3.1]: https://github.com/omines/datatables-bundle/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/omines/datatables-bundle/compare/0.2.2...0.3.0
[0.2.2]: https://github.com/omines/datatables-bundle/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/omines/datatables-bundle/compare/0.2.0...0.2.1
Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/FunctionalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function testTypeDataTable()
$this->assertSame(0, $json->draw);
$this->assertSame(6, $json->recordsTotal);
$this->assertSame('George W.', $json->data[0]->firstName);
$this->assertSame('Bush', $json->data[0]->lastName);
$this->assertSame('BUSH', $json->data[0]->lastName);
$this->assertSame('01-01-2017', $json->data[0]->lastActivity);

$json = $this->callDataTableUrl('/type?_dt=persons&draw=1&search[value]=Bush');
Expand Down

0 comments on commit 5475a34

Please sign in to comment.