Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
per committed Aug 5, 2023
1 parent ea0afe1 commit 0c68fbe
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
id 'groovy'
id 'java-library'
//id 'org.openjfx.javafxplugin' version '0.0.13'
id 'signing'
id 'maven-publish'
id('io.github.gradle-nexus.publish-plugin') version '1.3.0'
id "com.github.ben-manes.versions" version "0.46.0"
id "com.github.ben-manes.versions" version "0.47.0"
}

group 'se.alipsa.groovy'
version '1.0.2-SNAPSHOT'
version '1.0.2'
description = "Groovy library common public domain and oss data in matrix format)"

repositories {
mavenLocal()
//mavenLocal()
mavenCentral()
}

Expand All @@ -27,15 +26,15 @@ java {
}

dependencies {
def groovyVersion = '4.0.12'
def groovyVersion = '4.0.13'
def groovy = "org.apache.groovy:groovy:$groovyVersion"
compileOnly groovy
compileOnly("se.alipsa.groovy:matrix:1.1.1")
compileOnly("se.alipsa.groovy:matrix:1.1.2")

testImplementation groovy
testImplementation("se.alipsa.groovy:matrix:1.1.1")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
testImplementation("se.alipsa.groovy:matrix:1.1.2")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
}

test {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down
4 changes: 4 additions & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history

## v 1.0.2, 2023-08-06
- replace iris dataset with a better version
- upgrade matrix to ver 1.1.2

## v1.0.1, 2023-05-18
- renamed to matrix-datasets
- add map data
Expand Down

0 comments on commit 0c68fbe

Please sign in to comment.