Skip to content

Commit 90bdb70

Browse files
committed
Prepare for release 0.9
1 parent ed3cfaf commit 90bdb70

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ This change log follows the conventions of
66

77
## [Unreleased][unreleased]
88

9-
- Added the static method `getLibraryVersion()` to
9+
Nothing so far.
10+
11+
## [0.9] - 2016-08-23
12+
13+
### Added
14+
15+
- A new static method `getLibraryVersion()` in
1016
`CoreMidiDeviceProvider` so that client software can determine the
1117
version of CoreMIDI4J which is in use. (If this method is not found,
1218
then the version is unknown, but must be 0.8 or earlier.)
@@ -100,7 +106,8 @@ This change log follows the conventions of
100106
- Initial Public Release
101107

102108

103-
[unreleased]: https://github.com/DerekCook/CoreMidi4J/compare/v0.8...HEAD
109+
[unreleased]: https://github.com/DerekCook/CoreMidi4J/compare/v0.9...HEAD
110+
[0.9]: https://github.com/DerekCook/CoreMidi4J/compare/V0.8...v0.9
104111
[0.8]: https://github.com/DerekCook/CoreMidi4J/compare/V0.7...v0.8
105112
[0.7]: https://github.com/DerekCook/CoreMidi4J/compare/V0.5...v0.7
106113
[0.5]: https://github.com/DerekCook/CoreMidi4J/compare/V0.4...V0.5

CoreMIDI4J/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<groupId>uk.co.xfactory-librarians</groupId>
1111
<artifactId>coremidi4j</artifactId>
12-
<version>0.9-SNAPSHOT</version>
12+
<version>0.9</version>
1313

1414
<packaging>jar</packaging>
1515

@@ -228,7 +228,7 @@
228228
<plugin>
229229
<groupId>org.apache.maven.plugins</groupId>
230230
<artifactId>maven-jar-plugin</artifactId>
231-
<version>2.1</version>
231+
<version>3.0.2</version>
232232
<configuration>
233233
<archive>
234234
<manifest>

CoreMIDI4J/src/uk/co/xfactorylibrarians/coremidi4j/CoreMidiDeviceProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ public static boolean isLibraryLoaded() throws CoreMidiException {
382382
* Determine the version of the library which is being used.
383383
*
384384
* @return the implementation version of the library, as compiled into the JAR manifest.
385+
* @since 0.9
385386
*/
386387

387388
public static String getLibraryVersion() {

0 commit comments

Comments
 (0)