Skip to content

Commit

Permalink
Update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MacFJA committed Jan 20, 2021
1 parent c3ece8f commit f3d8647
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Makefile text
#

/.phan export-ignore
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php_cs export-ignore
Expand Down
33 changes: 31 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0]

### Fixed

- Wrong output of the NumericFacet ([Issue#1], [PR#2])
- Missing Composer plugin
- Missing `getSeperator` method in `TagField`
- Missing total number of result
- Fix typo in search parameter (`RETURN`)
- Fix prefixes data from index information

### Added

- Unit test on NumericFacet ([PR#2])
- Index stats can return fields as object.
- Fields implements Comparable interface
- Paginate results.
- Syntax error detection in search.

### Changed

- Rename `Index::addFromArray` to `Index::addDocumentFromArray` for consistency (Depreciation, keeping BC)
- Rename namespace from `MacFJA\RedisSearch` to `MacFJA\RediSearch`(Depreciation, keeping BC)
- Uniformize Builder interface (Deprecation, keeping BC)

## [1.0.0] - 2020-12-05

First version

[Unreleased]: https://github.com/MacFJA/php-redisearch/compare/1.0.0...HEAD
[1.0.0]: https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0
[Unreleased]: https://github.com/MacFJA/php-redisearch/compare/1.1.0...HEAD
[1.1.0]: https://github.com/MacFJA/php-redisearch/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0

[Issue#1]: https://github.com/MacFJA/php-redisearch/issues/1
[PR#2]: https://github.com/MacFJA/php-redisearch/pulls/2
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fix-code: | vendor
@#$(COMPOSER) exec -v psalm -- --alter --issues=all src

test: | vendor
$(COMPOSER) exec -v phpunit tests
$(COMPOSER) exec -v phpunit -- --whitelist=src tests

vendor:
ifneq (prod,${BUILD_MODE})
Expand Down

0 comments on commit f3d8647

Please sign in to comment.