Skip to content

Commit f3d8647

Browse files
committed
Update Changelog
1 parent c3ece8f commit f3d8647

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Makefile text
1515
#
1616

1717
/.phan export-ignore
18+
/tests export-ignore
1819
/.gitattributes export-ignore
1920
/.gitignore export-ignore
2021
/.php_cs export-ignore

CHANGELOG.md

+31-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.1.0]
10+
11+
### Fixed
12+
13+
- Wrong output of the NumericFacet ([Issue#1], [PR#2])
14+
- Missing Composer plugin
15+
- Missing `getSeperator` method in `TagField`
16+
- Missing total number of result
17+
- Fix typo in search parameter (`RETURN`)
18+
- Fix prefixes data from index information
19+
20+
### Added
21+
22+
- Unit test on NumericFacet ([PR#2])
23+
- Index stats can return fields as object.
24+
- Fields implements Comparable interface
25+
- Paginate results.
26+
- Syntax error detection in search.
27+
28+
### Changed
29+
30+
- Rename `Index::addFromArray` to `Index::addDocumentFromArray` for consistency (Depreciation, keeping BC)
31+
- Rename namespace from `MacFJA\RedisSearch` to `MacFJA\RediSearch`(Depreciation, keeping BC)
32+
- Uniformize Builder interface (Deprecation, keeping BC)
33+
934
## [1.0.0] - 2020-12-05
1035

1136
First version
1237

13-
[Unreleased]: https://github.com/MacFJA/php-redisearch/compare/1.0.0...HEAD
14-
[1.0.0]: https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0
38+
[Unreleased]: https://github.com/MacFJA/php-redisearch/compare/1.1.0...HEAD
39+
[1.1.0]: https://github.com/MacFJA/php-redisearch/compare/1.0.0...1.1.0
40+
[1.0.0]: https://github.com/MacFJA/php-redisearch/releases/tag/1.0.0
41+
42+
[Issue#1]: https://github.com/MacFJA/php-redisearch/issues/1
43+
[PR#2]: https://github.com/MacFJA/php-redisearch/pulls/2

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fix-code: | vendor
2020
@#$(COMPOSER) exec -v psalm -- --alter --issues=all src
2121

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

2525
vendor:
2626
ifneq (prod,${BUILD_MODE})

0 commit comments

Comments
 (0)