Skip to content

Commit 538a6a4

Browse files
committed
Publish 4.5.0.
1 parent b10e954 commit 538a6a4

4 files changed

Lines changed: 18 additions & 14 deletions

File tree

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# MatConsoleCtl releases
22

3-
### Version 4.5.0-SNAPSHOT - TBD ([javadoc](http://diffplug.github.io/matconsolectl/javadoc/snapshot/), [jcenter](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/matsim/matconsolectl/))
3+
### Version 4.6.0-SNAPSHOT - TBD ([javadoc](http://diffplug.github.io/matconsolectl/javadoc/snapshot/), [jcenter](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/matsim/matconsolectl/))
4+
5+
### Version 4.5.0 - July 18th 2017 ([javadoc](http://diffplug.github.io/matconsolectl/javadoc/4.5.0/), [jcenter](https://bintray.com/diffplug/opensource/matconsolectl/4.5.0/view))
6+
7+
- Added `Builder.setOutputWriter` and `Builder.setErrorWriter` for capturing `stdout` and `stderr` from MATLAB. ([#20](https://github.com/diffplug/matconsolectl/pull/20))
48

59
### Version 4.4.4 - December 15th 2016 ([javadoc](http://diffplug.github.io/matconsolectl/javadoc/4.4.4/), [jcenter](https://bintray.com/diffplug/opensource/matconsolectl/4.4.4/view))
610

META-INF/MANIFEST.MF

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Manifest-Version: 1.0
22
Bundle-Description: MatConsoleCtl - control MATLAB from Java
33
Bundle-DocURL: https://github.com/diffplug/matconsolectl
4-
Bundle-License: https://github.com/diffplug/matconsolectl/blob/v4.4.2/LI
4+
Bundle-License: https://github.com/diffplug/matconsolectl/blob/v4.5.0/LI
55
CENSE
66
Bundle-ManifestVersion: 2
77
Bundle-SymbolicName: com.diffplug.matsim.matconsolectl
88
Bundle-Vendor: DiffPlug
9-
Bundle-Version: 4.4.2
10-
Export-Package: matlabcontrol;version="4.4.2",matlabcontrol.demo;version
11-
="4.4.2",matlabcontrol.extensions;uses:=matlabcontrol;version="4.4.2",m
12-
atlabcontrol.internal;version="4.4.2",matlabcontrol.link;uses:=matlabco
13-
ntrol;version="4.4.2"
9+
Bundle-Version: 4.5.0
10+
Export-Package: matlabcontrol;version="4.5.0",matlabcontrol.demo;version
11+
="4.5.0",matlabcontrol.extensions;uses:=matlabcontrol;version="4.5.0",m
12+
atlabcontrol.internal;version="4.5.0",matlabcontrol.link;uses:=matlabco
13+
ntrol;version="4.5.0"
1414
Main-Class: matlabcontrol.demo.DemoMain
1515
Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.6))"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ output = [
1212
].join('\n');
1313
-->
1414
[![Maven artifact](https://img.shields.io/badge/mavenCentral-com.diffplug.matsim%3Amatconsolectl-blue.svg)](https://bintray.com/diffplug/opensource/matconsolectl/view)
15-
[![Latest version](https://img.shields.io/badge/latest-4.4.4-blue.svg)](https://github.com/diffplug/matconsolectl/releases/latest)
16-
[![Javadoc](https://img.shields.io/badge/javadoc-OK-blue.svg)](https://diffplug.github.io/matconsolectl/javadoc/4.4.4/)
15+
[![Latest version](https://img.shields.io/badge/latest-4.5.0-blue.svg)](https://github.com/diffplug/matconsolectl/releases/latest)
16+
[![Javadoc](https://img.shields.io/badge/javadoc-OK-blue.svg)](https://diffplug.github.io/matconsolectl/javadoc/4.5.0/)
1717
[![License Apache](https://img.shields.io/badge/license-BSD-blue.svg)](https://tldrlegal.com/license/bsd-3-clause-license-(revised))
1818

19-
[![Changelog](https://img.shields.io/badge/changelog-4.5.0--SNAPSHOT-brightgreen.svg)](CHANGES.md)
19+
[![Changelog](https://img.shields.io/badge/changelog-4.5.0-brightgreen.svg)](CHANGES.md)
2020
[![Travis CI](https://travis-ci.org/diffplug/matconsolectl.svg?branch=master)](https://travis-ci.org/diffplug/matconsolectl)
2121
<!---freshmark /shields -->
2222

@@ -56,7 +56,7 @@ Contributions are welcome, see the [contributing guide](CONTRIBUTING.md) for dev
5656
MatConsoleCtl includes a demo GUI. Below is a script you can use to run the demo inside of MATLAB:
5757

5858
```matlab
59-
version = '4.4.4';
59+
version = '4.5.0';
6060
tempdir = 'matconsolectl_demo';
6161
6262
% make a directory to copy the jar into
@@ -72,7 +72,7 @@ javaaddpath([pwd '\' filename]);
7272
matlabcontrol.demo.DemoMain
7373
```
7474

75-
You can also run the demo outside of MATLAB by downloading the jar, then running `java -jar matconsolectl-4.4.4.jar` at a console.
75+
You can also run the demo outside of MATLAB by downloading the jar, then running `java -jar matconsolectl-4.5.0.jar` at a console.
7676

7777
## Compatibility
7878

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
stable=4.4.4
2-
version=4.5.0-SNAPSHOT
1+
stable=4.5.0
2+
version=4.5.0
33
name=matconsolectl
44
group=com.diffplug.matsim
55
description=MatConsoleCtl - control MATLAB from Java

0 commit comments

Comments
 (0)