Skip to content
This repository was archived by the owner on Jun 1, 2024. It is now read-only.

Commit be11764

Browse files
committed
Release 1.1.0
1 parent 125987c commit be11764

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/).
66

7+
## [1.1.0] - 2021-03-16
8+
### Changed
9+
* Minimum required version of Examine is now 1.1.0+
10+
* Sorting and paging is now handled by Examine
11+
12+
### Fixed
13+
* `MinHits` and `MaxCount` weren't being applied when creating facets
14+
* `GetHits` was returning `0` for any given value
15+
16+
### Removed
17+
* `FacetSearchResultsBase` has been replaced by Examine 1.1.0
18+
719
## [1.0.0] - 2020-08-12
820
### Added
921
* Initial release of Examine Facets
1022
* Support for BoboBrowse.Net
1123
* Support for MultiFacetsLucene.Net
1224
* Documentation for configuration and querying
1325

14-
[Unreleased]: https://github.com/callumbwhyte/examine-facets/compare/release-1.0.0...HEAD
26+
[Unreleased]: https://github.com/callumbwhyte/examine-facets/compare/release-1.1.0...HEAD
27+
[1.1.0]: https://github.com/callumbwhyte/examine-facets/compare/release-1.0.0...release-1.1.0
28+
[1.0.0]: https://github.com/callumbwhyte/examine-facets/tree/release-1.0.0

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Callum Whyte
3+
Copyright (c) 2021 Callum Whyte
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Powerful filtering and faceting directly within the [Examine](https://github.com
1010

1111
## Getting started
1212

13-
Examine Facets requires [Examine](https://github.com/shazwazza/examine) 1.0.3+.
13+
Examine Facets requires [Examine](https://github.com/shazwazza/examine) 1.1.0+.
1414

1515
### Installation
1616

@@ -114,8 +114,12 @@ This project is maintained by [Callum Whyte](https://callumwhyte.com/) and contr
114114

115115
[MultiFacetLucene.Net](https://github.com/aspcodenet/MultiFacetLuceneNet) was created by [Stefan Holmberg](https://github.com/aspcodenet).
116116

117+
### A special #h5yr to our contributors
118+
119+
* [Ronald Barendse](https://github.com/ronaldbarendse)
120+
117121
## License
118122

119-
Copyright © 2020 [Callum Whyte](https://callumwhyte.com/), and other contributors
123+
Copyright © 2021 [Callum Whyte](https://callumwhyte.com/), and other contributors
120124

121125
Licensed under the [MIT License](LICENSE.md).

src/Examine.Facets.BoboBrowse/Examine.Facets.BoboBrowse.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version Condition="'$(BUILD_BUILDNUMBER)' != ''">$(BUILD_BUILDNUMBER)</Version>
66
<Description>BoboBrowse implementation for Examine Facets</Description>
77
<Authors>Callum Whyte</Authors>
8-
<Copyright>Copyright © 2020 Callum Whyte, and other contributors</Copyright>
8+
<Copyright>Copyright © 2021 Callum Whyte, and other contributors</Copyright>
99
<PackageIconUrl>https://raw.githubusercontent.com/callumbwhyte/examine-facets/main/docs/img/logo.png</PackageIconUrl>
1010
<PackageLicenseUrl>https://github.com/callumbwhyte/examine-facets/blob/main/LICENSE.md</PackageLicenseUrl>
1111
<PackageProjectUrl>https://github.com/callumbwhyte/examine-facets</PackageProjectUrl>

src/Examine.Facets.MultiFacets/Examine.Facets.MultiFacets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version Condition="'$(BUILD_BUILDNUMBER)' != ''">$(BUILD_BUILDNUMBER)</Version>
66
<Description>MultiFacetLucene implementation for Examine Facets</Description>
77
<Authors>Callum Whyte</Authors>
8-
<Copyright>Copyright © 2020 Callum Whyte, and other contributors</Copyright>
8+
<Copyright>Copyright © 2021 Callum Whyte, and other contributors</Copyright>
99
<PackageIconUrl>https://raw.githubusercontent.com/callumbwhyte/examine-facets/main/docs/img/logo.png</PackageIconUrl>
1010
<PackageLicenseUrl>https://github.com/callumbwhyte/examine-facets/blob/main/LICENSE.md</PackageLicenseUrl>
1111
<PackageProjectUrl>https://github.com/callumbwhyte/examine-facets</PackageProjectUrl>

src/Examine.Facets/Examine.Facets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version Condition="'$(BUILD_BUILDNUMBER)' != ''">$(BUILD_BUILDNUMBER)</Version>
66
<Description>Powerful filtering and faceting directly within the Examine fluent API</Description>
77
<Authors>Callum Whyte</Authors>
8-
<Copyright>Copyright © 2020 Callum Whyte, and other contributors</Copyright>
8+
<Copyright>Copyright © 2021 Callum Whyte, and other contributors</Copyright>
99
<PackageIconUrl>https://raw.githubusercontent.com/callumbwhyte/examine-facets/main/docs/img/logo.png</PackageIconUrl>
1010
<PackageLicenseUrl>https://github.com/callumbwhyte/examine-facets/blob/main/LICENSE.md</PackageLicenseUrl>
1111
<PackageProjectUrl>https://github.com/callumbwhyte/examine-facets</PackageProjectUrl>

0 commit comments

Comments
 (0)