diff --git a/.gitignore b/.gitignore index 27f526173..e551f3556 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ build/ .idea/ *.iml javadoc/ +tessdata/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 946a3df65..de1ff886b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,32 @@ # Change Log ## [Unreleased](https://github.com/rmtheis/tess-two/tree/HEAD) -[Full Changelog](https://github.com/rmtheis/tess-two/compare/6.3.0...HEAD) +[Full Changelog](https://github.com/rmtheis/tess-two/compare/7.0.0...HEAD) + +## [7.0.0](https://github.com/rmtheis/tess-two/tree/7.0.0) (2017-06-12) +[Full Changelog](https://github.com/rmtheis/tess-two/compare/6.3.0...7.0.0) + +**API-breaking change:** + +- ResultIterator getChoicesAndConfidence\(\) is now getSymbolChoicesAndConfidence\(\) + +**Fixed bugs:** + +- ResultIterator crashes with certain character combinations [\#126](https://github.com/rmtheis/tess-two/issues/126) +- ResultIterator returns single Character as Alternatives for Words [\#119](https://github.com/rmtheis/tess-two/issues/119) +- beginDocument\(\) returns false even when successful [\#103](https://github.com/rmtheis/tess-two/issues/103) + +**Closed issues:** + +- Hardcoded path in TessBaseAPITest.java [\#208](https://github.com/rmtheis/tess-two/issues/208) + +**Merged pull requests:** + +- Add missing PageSegMode constant [\#209](https://github.com/rmtheis/tess-two/pull/209) ([Robyer](https://github.com/Robyer)) +- Fix return value of BeginDocument \(fixes \#103\) [\#207](https://github.com/rmtheis/tess-two/pull/207) ([Robyer](https://github.com/Robyer)) +- Improve ResultIterator [\#206](https://github.com/rmtheis/tess-two/pull/206) ([Robyer](https://github.com/Robyer)) +- Update gradle plugin [\#205](https://github.com/rmtheis/tess-two/pull/205) ([Robyer](https://github.com/Robyer)) +- Fix javadocs errors and warnings [\#202](https://github.com/rmtheis/tess-two/pull/202) ([Robyer](https://github.com/Robyer)) ## [6.3.0](https://github.com/rmtheis/tess-two/tree/6.2.0) (2017-04-06) [Full Changelog](https://github.com/rmtheis/tess-two/compare/6.2.0...6.3.0) diff --git a/README.md b/README.md index f7bc80fea..bea8b18e0 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To use tess-two from your app, edit your app module's `build.gradle` file to add tess-two as an external dependency: dependencies { - compile 'com.rmtheis:tess-two:6.3.0' + compile 'com.rmtheis:tess-two:7.0.0' } [Javadoc][javadoc] is available. diff --git a/build.gradle b/build.gradle index 77addd299..8914f198b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.1' + classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' } @@ -14,7 +14,7 @@ buildscript { allprojects { group = 'com.rmtheis' - version = '6.3.0' + version = '7.0.0' repositories { jcenter()