diff --git a/README.md b/README.md index 77f2a21b5..46b3d2e48 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,10 @@ from ````/openhtmltopdf-examples/src/main/java/com/openhtmltopdf/testcases/Testc CHANGELOG ======== -head - 0.0.1-RC5-SNAPSHOT +head - 0.0.1-RC6-SNAPSHOT +======== + +0.0.1-RC5 ======== + [Reimplemented text justification](https://github.com/danfickle/openhtmltopdf/pull/33) Thanks @hiddendog + [Fixed bug in table borders](https://github.com/danfickle/openhtmltopdf/pull/34) Thanks @rototor diff --git a/docs/integration-guide.md b/docs/integration-guide.md index b42d74e46..9a1c16c4d 100644 --- a/docs/integration-guide.md +++ b/docs/integration-guide.md @@ -4,7 +4,7 @@ OPEN HTML TO PDF GETTING OPEN HTML TO PDF ======== New releases of Open HTML to PDF will be distributed through Maven. Search maven for [com.openhtmltopdf](http://mvnrepository.com/artifact/com.openhtmltopdf). -Current maven release is ````0.0.1-RC4````. If you would like to be notified of new releases, please subscribe to the [Maven issue](https://github.com/danfickle/openhtmltopdf/issues/7). +Current maven release is ````0.0.1-RC5````. If you would like to be notified of new releases, please subscribe to the [Maven issue](https://github.com/danfickle/openhtmltopdf/issues/7). MAVEN ARTIFACTS ======== @@ -12,7 +12,7 @@ Add these to your maven dependencies section as needed: ````xml - 0.0.1-RC4 + 0.0.1-RC5 @@ -118,8 +118,8 @@ import com.openhtmltopdf.bidi.support.ICUBidiReorderer; import com.openhtmltopdf.bidi.support.ICUBidiSplitter; // Then call on the builder. -builder.useBidiSplitter(new ICUBidiSplitter.ICUBidiSplitterFactory()); -builder.useBidiReorderer(new ICUBidiReorderer()); +builder.useUnicodeBidiSplitter(new ICUBidiSplitter.ICUBidiSplitterFactory()); +builder.useUnicodeBidiReorderer(new ICUBidiReorderer()); builder.defaultTextDirection(TextDirection.LTR); // OR RTL ````