Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fergiemcdowall committed Aug 19, 2024
1 parent 0e2a26e commit aa8150a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions dist/search-index-5.0.0-rc3.js → dist/search-index-5.0.0.js

Large diffs are not rendered by default.

File renamed without changes.

Large diffs are not rendered by default.

File renamed without changes.
4 changes: 2 additions & 2 deletions dist/search-index.js

Large diffs are not rendered by default.

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.

4 changes: 2 additions & 2 deletions src/SearchIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ export class SearchIndex {
* Create a SearchIndex
* @param {SIIndexOptions} [ops] - The initialisation options. Most can be overridden when reading or writing to the index.
*/
constructor(ops = {}) {
constructor (ops = {}) {
ops = {
cacheLength: 1000,
caseSensitive: false,
docExistsSpace: 'DOC_RAW',
idGenerator: (function* generateId() {
idGenerator: (function * generateId () {
let i = 0
while (true) {
yield Date.now() + '-' + i++
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-rc3"
export const packageVersion = "5.0.0"

0 comments on commit aa8150a

Please sign in to comment.