Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fergiemcdowall committed Dec 5, 2023
1 parent 559be7d commit 6ffcf19
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "search-index",
"version": "5.0.0-rc1",
"version": "5.0.0-rc2",
"description": "A network resilient, persistent full-text search library for the browser and Node.js",
"keywords": [
"search",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/Autocomplete.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export class Autocomplete {
constructor(searchboxEl, search, suggestions = {}) {
constructor (searchboxEl, search, suggestions = {}) {
this.autoCompleteFunction = suggestions.autoCompleteFunction
this.currentFocus = -1
this.searchboxEl = searchboxEl
Expand Down
2 changes: 1 addition & 1 deletion src/ui/SearchInput.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Autocomplete } from './Autocomplete.js'

export class SearchInput {
constructor(
constructor (
{
elementId = 'searchInput',
suggestions = {},
Expand Down
2 changes: 1 addition & 1 deletion src/ui/UI.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Facet } from './Facet.js'
import { SearchInput } from './SearchInput.js'

export class UI {
constructor({
constructor ({
index = null,
count = {},
hits = {},
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const packageVersion = "5.0.0-rc1"
export const packageVersion = "5.0.0-rc2"

0 comments on commit 6ffcf19

Please sign in to comment.