Skip to content

Commit d9bfb4a

Browse files
committed
Release 3.0.1
1 parent 25542b5 commit d9bfb4a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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+
## [3.0.1] - 2023-01-27
8+
### Fixed
9+
* `WhitespaceSeparatorTokenizer` correctly separates whitespace so paths are indexed correctly
10+
711
## [3.0.0] - 2022-11-28
812
### Added
913
* Initial release of Search Extensions for Umbraco v9, v10 (LTS), and v11
@@ -83,7 +87,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this
8387
### Added
8488
* Initial release of Search Extensions for Umbraco 8.1
8589

86-
[Unreleased]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-3.0.0...HEAD
90+
[Unreleased]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-3.0.1...HEAD
91+
[3.0.1]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-3.0.0...release-3.0.1
8792
[3.0.0]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-2.0.0...release-3.0.0
8893
[2.0.0]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-1.5.1...release-2.0.0
8994
[1.5.1]: https://github.com/callumbwhyte/umbraco-search-extensions/compare/release-1.5.0...release-1.5.1

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Callum Whyte
3+
Copyright (c) 2023 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

+3-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Imagine a field called "locations" has the following JSON value:
181181

182182
Each property will be created as a field in the index, including any nested properties. In this example these would be called "locations_city", "locations_position_latitude" and "locations_position_longitude".
183183

184-
It is possible to index a subset of a JSON object's properties by supplying a path in (https://www.newtonsoft.com/json/help/html/QueryJsonSelectTokenJsonPath.htm)[JSON Path format].
184+
It is possible to index a subset of a JSON object's properties by supplying a path in [JSON Path format](https://www.newtonsoft.com/json/help/html/QueryJsonSelectTokenJsonPath.htm).
185185

186186
Register a new `ValueTypeFactory` in the index implementing the `json` type, and define the path as a parameter, before assigning it to a field:
187187

@@ -258,9 +258,10 @@ The package logo uses the [Magnifying Glass](https://thenounproject.com/term/sea
258258

259259
* [Busra Sengul](https://github.com/busrasengul)
260260
* [Chriztian Steinmeier](https://github.com/greystate)
261+
* [Dave Woestenborghs](https://github.com/dawoe)
261262

262263
## License
263264

264-
Copyright © 2022 [Callum Whyte](https://callumwhyte.com/), and other contributors
265+
Copyright © 2023 [Callum Whyte](https://callumwhyte.com/), and other contributors
265266

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

src/Our.Umbraco.Extensions.Search/Our.Umbraco.Extensions.Search.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Version Condition="'$(BUILD_BUILDNUMBER)' != ''">$(BUILD_BUILDNUMBER)</Version>
66
<Description>Extensions for performing searches in Umbraco</Description>
77
<Authors>Callum Whyte</Authors>
8-
<Copyright>Copyright © 2022 Callum Whyte, and other contributors</Copyright>
8+
<Copyright>Copyright © 2023 Callum Whyte, and other contributors</Copyright>
99
<PackageIcon>docs\logo.png</PackageIcon>
1010
<PackageLicenseFile>docs\LICENSE.md</PackageLicenseFile>
1111
<PackageReadmeFile>docs\README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)