Skip to content

Commit

Permalink
Release 0.3.4 for beat-link-trigger 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Sep 5, 2017
1 parent 23515d6 commit 172ddc3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ This change log follows the conventions of

Nothing so far.

## [0.3.4] - 2017-09-05

### Added

- Exposed the function which opens and returns a metadata cache file,
so that other projects can explore their contents, for example to
offer a view of what they contain.

## [0.3.2] - 2017-08-08

### Added
Expand Down Expand Up @@ -256,7 +264,8 @@ Nothing so far.
- Initial early release of DeviceFinder.


[unreleased]: https://github.com/brunchboy/beat-link/compare/v0.3.2...HEAD
[unreleased]: https://github.com/brunchboy/beat-link/compare/v0.3.4...HEAD
[0.3.4]: https://github.com/brunchboy/beat-link/compare/v0.3.2...v0.3.4
[0.3.2]: https://github.com/brunchboy/beat-link/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/brunchboy/beat-link/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/brunchboy/beat-link/compare/v0.2.1...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.deepsymmetry</groupId>
<artifactId>beat-link</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>0.3.4</version>
<packaging>jar</packaging>

<name>beat-link</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ private void attachMetadataCacheInternal(SlotReference slot, ZipFile cache) {
*
* @throws IOException if there is a problem reading the file, or it does not contain a valid metadata cache
*/
private ZipFile openMetadataCache(File cache) throws IOException {
public ZipFile openMetadataCache(File cache) throws IOException {
ZipFile newCache = new ZipFile(cache, ZipFile.OPEN_READ);
String tag = getCacheFormatEntry(newCache);
if (tag == null || !tag.startsWith(CACHE_FORMAT_IDENTIFIER)) {
Expand Down

0 comments on commit 172ddc3

Please sign in to comment.