Skip to content

Commit

Permalink
Release 2.0.0-alpha.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromewu committed May 17, 2019
1 parent 5e383d7 commit d41d0ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -39,7 +39,7 @@ Tesseract.js works with a `<script>` tag via local copy or CDN, with webpack via

You can simply include Tesseract.js with a CDN like this:
```html
<script src='https://unpkg.com/tesseract.js@v2.0.0-alpha.6/dist/tesseract.min.js'></script>
<script src='https://unpkg.com/tesseract.js@v2.0.0-alpha.7/dist/tesseract.min.js'></script>
```

After including your scripts, the `Tesseract` variable will be defined globally!
Expand Down
2 changes: 1 addition & 1 deletion docs/local-installation.md
Expand Up @@ -10,7 +10,7 @@ In Node.js environment, the only path you may want to customize is languages/lan

```javascript
const worker = Tesseract.TesseractWorker({
workerPath: 'https://unpkg.com/tesseract.js@v2.0.0-alpha.6/dist/worker.min.js',
workerPath: 'https://unpkg.com/tesseract.js@v2.0.0-alpha.7/dist/worker.min.js',
langPath: 'https://tessdata.projectnaptha.com/4.0.0',
corePath: 'https://unpkg.com/tesseract.js-core@v2.0.0-beta.10/tesseract-core.wasm.js',
});
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "tesseract.js",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "Pure Javascript Multilingual OCR",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit d41d0ce

Please sign in to comment.