diff --git a/.idea/libraries/bld.xml b/.idea/libraries/bld.xml index 59ffe59..48e8fd5 100644 --- a/.idea/libraries/bld.xml +++ b/.idea/libraries/bld.xml @@ -2,12 +2,12 @@ - + - + diff --git a/.vscode/settings.json b/.vscode/settings.json index 6932aa7..ed6a743 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ ], "java.configuration.updateBuildConfiguration": "automatic", "java.project.referencedLibraries": [ - "${HOME}/.bld/dist/bld-1.9.0.jar", + "${HOME}/.bld/dist/bld-1.9.1.jar", "lib/compile/*.jar", "lib/runtime/*.jar", "lib/test/*.jar" diff --git a/README.md b/README.md index b662d0f..b833d40 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Java](https://img.shields.io/badge/java-17%2B-blue)](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html) -[![bld](https://img.shields.io/badge/1.9.0-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld) +[![bld](https://img.shields.io/badge/1.9.1-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld) [![Release](https://flat.badgen.net/maven/v/metadata-url/https:/repo.rife2.com/releases/com/uwyn/rife2/bld-tests-badge/maven-metadata.xml)](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-tests-badge) [![GitHub CI](https://github.com/rife2/bld-tests-badge/actions/workflows/bld.yml/badge.svg)](https://github.com/rife2/bld-tests-badge/actions/workflows/bld.yml) diff --git a/lib/bld/bld-wrapper.jar b/lib/bld/bld-wrapper.jar index 40d2e08..95a9ac4 100644 Binary files a/lib/bld/bld-wrapper.jar and b/lib/bld/bld-wrapper.jar differ diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties index 1b304b0..8022d33 100644 --- a/lib/bld/bld-wrapper.properties +++ b/lib/bld/bld-wrapper.properties @@ -3,4 +3,4 @@ bld.downloadExtensionSources=true bld.extensions= bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES bld.downloadLocation= -bld.version=1.9.0 +bld.version=1.9.1 diff --git a/src/bld/java/rife/bld/extension/TestsBadgeBuild.java b/src/bld/java/rife/bld/extension/TestsBadgeBuild.java index 8c28d27..bd1683f 100644 --- a/src/bld/java/rife/bld/extension/TestsBadgeBuild.java +++ b/src/bld/java/rife/bld/extension/TestsBadgeBuild.java @@ -15,7 +15,7 @@ public class TestsBadgeBuild extends Project { public TestsBadgeBuild() { pkg = "rife.bld.extension"; name = "TestsBadge"; - version = version(1,4,7); + version = version(1,4,8); archiveBaseName = "bld-tests-badge"; javaRelease = 17; @@ -24,7 +24,7 @@ public TestsBadgeBuild() { repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES); scope(compile) - .include(dependency("com.uwyn.rife2", "bld", version(1,9,0))); + .include(dependency("com.uwyn.rife2", "bld", version(1,9,1))); scope(test) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,2))) .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,2)));