Skip to content

Commit

Permalink
Merge pull request #80 from jamesmudd/prepare-v0.4.2
Browse files Browse the repository at this point in the history
Prepare v0.4.2
  • Loading branch information
jamesmudd authored Apr 19, 2019
2 parents f440e77 + 0ab9779 commit ddb401a
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Please note this project is still in pre-release development.

## v0.4.2
- Add support for byte shuffle filter
- Many filter management improvements including support for dynamically loaded filters
- #74 Add support for reading dataset fill values
- Checkstyle added to improve code consistency - not full code formatting yet...
- Update Gradle to 5.4
- Update commons-lang3 to 3.9 (Java 8)
- Update mockito-core to 2.27.+

## v0.4.1
- Add support for broken links
- #70 Add support for attribute and link creation order tracking
Expand Down
6 changes: 3 additions & 3 deletions jhdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {

// Varibles
group = 'io.jhdf'
version = '0.4.1'
version = '0.4.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -42,7 +42,7 @@ repositories {
dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta4' // Need 1.8 for modules
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'


// Use JUnit 5 test framework
Expand All @@ -52,7 +52,7 @@ dependencies {
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.8.0-beta4'

// Mocking
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.25.+'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.27.+'
// Matchers
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
}
Expand Down
Binary file modified jhdf/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion jhdf/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
18 changes: 17 additions & 1 deletion jhdf/gradlew
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/usr/bin/env sh

#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

##############################################################################
##
## Gradle start up script for UN*X
Expand Down Expand Up @@ -28,7 +44,7 @@ APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m"'
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
Expand Down
18 changes: 17 additions & 1 deletion jhdf/gradlew.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
Expand All @@ -14,7 +30,7 @@ set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m"
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
Expand Down

0 comments on commit ddb401a

Please sign in to comment.