Skip to content

Commit

Permalink
Build version 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
weixsong committed Mar 7, 2016
1 parent 37fbf0a commit da39a6e
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* remove .DS_Store
* remove folder perf
* fix issue [#8](https://github.com/weixsong/elasticlunr.js/issues/8), do tokenizenation even if the parameter of tokenizer is array type, because if we do not do segmentation, the whole array item will be used to build index then partial query will not be searchable.
* but currently exist cross query error, need to fix.

## 0.8.6

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.7
0.8.8
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elasticlunr.js",
"version": "0.8.7",
"version": "0.8.8",
"main": "elasticlunr.js",
"ignore": [
"tests/",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elasticlunr",
"repo": "weixsong/elasticlunr.js",
"version": "0.8.7",
"version": "0.8.8",
"description": "Lightweight full-text search engine in Javascript for browser search and offline search.",
"license": "MIT",
"main": "elasticlunr.js",
Expand Down
4 changes: 2 additions & 2 deletions elasticlunr.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.7
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
Expand Down Expand Up @@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};

elasticlunr.version = "0.8.7";
elasticlunr.version = "0.8.8";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
Expand Down
4 changes: 2 additions & 2 deletions elasticlunr.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions example/elasticlunr.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.7
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
Expand Down Expand Up @@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};

elasticlunr.version = "0.8.7";
elasticlunr.version = "0.8.8";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
Expand Down
4 changes: 2 additions & 2 deletions example/elasticlunr.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/example_index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elasticlunr",
"description": "Lightweight full-text search engine in Javascript for browser search and offline search.",
"version": "0.8.7",
"version": "0.8.8",
"author": "Wei Song",
"keywords": ["search", "text retrieval", "offline search", "full text search"],
"homepage": "http://weixsong.github.io",
Expand Down
4 changes: 2 additions & 2 deletions release/elasticlunr.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* elasticlunr - http://weixsong.github.io
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.7
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.8.8
*
* Copyright (C) 2016 Oliver Nightingale
* Copyright (C) 2016 Wei Song
Expand Down Expand Up @@ -83,7 +83,7 @@ var elasticlunr = function (config) {
return idx;
};

elasticlunr.version = "0.8.7";
elasticlunr.version = "0.8.8";
/*!
* elasticlunr.utils
* Copyright (C) 2016 Oliver Nightingale
Expand Down
4 changes: 2 additions & 2 deletions release/elasticlunr.min.js

Large diffs are not rendered by default.

0 comments on commit da39a6e

Please sign in to comment.