Skip to content

Commit

Permalink
Prep v1.2.1
Browse files Browse the repository at this point in the history
belgattitude committed Mar 21, 2017
1 parent 0b29743 commit 9aa8d6b
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.2.1 (2017-03-21)

### Fixed

- Minor fix, wrong message referring to legacy `java_inspect` and `java_values`.

## 1.2.0 (2017-03-06)

### Added
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@
"require-dev" : {
"phpunit/phpunit": "^5.5",
"belgattitude/pjbserver-tools": "^2.1.2",
"friendsofphp/php-cs-fixer": "^2.1.1",
"friendsofphp/php-cs-fixer": "^2.1.2",
"monolog/monolog": "^1.21.0"
},
"scripts": {
2 changes: 1 addition & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ try {
to take advantage of

- some compelling libraries *([Jasperreports](http://community.jaspersoft.com/project/jasperreports-library), [CoreNLP](http://stanfordnlp.github.io/CoreNLP/), [FlyingSaucer](https://github.com/flyingsaucerproject/flyingsaucer/releases), [Jsoup](https://jsoup.org/)...)*
- benefit from JVM performances *([Deeplearning4J](https://deeplearning4j.org/)...)* or wrappers *([TensorFlowApi](https://www.tensorflow.org/api_docs/...)*...)
- benefit from JVM performances *([Deeplearning4J](https://deeplearning4j.org/)...)* or wrappers *([TensorFlowApi](https://www.tensorflow.org/api_docs)*...)
- when a pure-PHP alternative does not exists *(Android, driver, closed api, enterprise...)*
- or simply for the fun of it.

2 changes: 1 addition & 1 deletion src/Soluble/Japha/Bridge/Driver/Pjb62/Client.php
Original file line number Diff line number Diff line change
@@ -202,7 +202,7 @@ public function __construct(ArrayObject $params, LoggerInterface $logger)
$this->java_servlet = $params['JAVA_SERVLET'];

$this->RUNTIME = [];
$this->RUNTIME['NOTICE'] = '***USE echo java_inspect(jVal) OR print_r(java_values(jVal)) TO SEE THE CONTENTS OF THIS JAVA OBJECT!***';
$this->RUNTIME['NOTICE'] = '***USE echo $adapter->getDriver()->inspect(jVal) OR print_r($adapter->values(jVal)) TO SEE THE CONTENTS OF THIS JAVA OBJECT!***';
$this->parser = new Parser($this);
$this->protocol = new Protocol($this, $this->java_hosts, $this->java_servlet, $this->java_recv_size, $this->java_send_size);
$this->simpleFactory = new SimpleFactory($this);

0 comments on commit 9aa8d6b

Please sign in to comment.