From 2cefd1efb0ed6421f6374ba27466c00856533e6e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 28 Jul 2021 22:57:09 +0000 Subject: [PATCH] version up to 2.4.5, ready to publish v2.4.5 --- README.md | 19 ++++++++++--------- bin/build_site.sh | 2 +- bin/make_dist.sh | 2 +- dockers/pochi-groovysh/Dockerfile | 2 +- dockers/pochi/Dockerfile | 2 +- kunai2/pom.xml | 2 +- pochi-api/pom.xml | 4 ++-- pochi-cmd/pom.xml | 4 ++-- pochi-core/pom.xml | 6 +++--- .../main/java/jp/cafebabe/pochi/Pochi.java | 2 +- pom.xml | 2 +- site/content/_index.md | 6 +++--- site/content/description.md | 5 +++-- site/content/install.md | 8 ++++---- site/pom.xml | 8 ++++---- 15 files changed, 38 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index b6023531..45688d9c 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ [![codebeat badge](https://codebeat.co/badges/8e8c5e70-cb07-4f58-941c-3ddb64f3c059)](https://codebeat.co/projects/github-com-tamada-pochi-main) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://github.com/tamada/pochi/blob/master/LICENSE) -[![Version](https://img.shields.io/badge/Version-2.4.4-green.svg)](https://github.com/tamada/pochi/releases/tag/v2.4.4) +[![Version](https://img.shields.io/badge/Version-2.4.5-green.svg)](https://github.com/tamada/pochi/releases/tag/v2.4.5) [![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.4271132-green.svg)](https://zenodo.org/badge/latestdoi/82773287) -[![Javadoc](https://img.shields.io/badge/Javadoc-v2.4.4-blue?logo=java)](https://tamada.github.io/pochi/apidocs) -[![Docker](https://img.shields.io/badge/Docker-ghcr.io%2Ftamada%2Fpochi%3A2.4.4-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) +[![Javadoc](https://img.shields.io/badge/Javadoc-v2.4.5-blue?logo=java)](https://tamada.github.io/pochi/apidocs) +[![Docker](https://img.shields.io/badge/Docker-ghcr.io%2Ftamada%2Fpochi%3A2.4.5-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) [![GitHub Discussion](https://img.shields.io/badge/GitHub-Discussions-blue?logo=github)](https://github.com/tamada/pochi/discussions) Detecting the software theft, the birthmark toolkit for the JVM platform. @@ -82,7 +82,8 @@ For more detail, see [:ant: Examples](https://tamada.github.io/pochi/examples). Container images of **pochi** for Docker are: * [`ghcr.io/tamada/pochi`](https://github.com/users/tamada/packages/container/package/pochi) - * `2.4.4`, `latest` + * `2.4.5`, `latest` + * `2.4.4` * `2.4.3` * `2.4.2` * `2.4.1` @@ -107,7 +108,7 @@ Container images of **pochi** for Docker are: * `1.0.0` * accept only `.js` script files. -[![Docker](https://img.shields.io/badge/Docker-ghcir.io%2Ftamada%2Fpochi%3A2.4.4-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) +[![Docker](https://img.shields.io/badge/Docker-ghcir.io%2Ftamada%2Fpochi%3A2.4.5-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) To run **pochi** on Docker container OS, type the following commands. @@ -155,10 +156,10 @@ Then, add the dependencies of your `pom.xml`. | groupId | artifactId | version | |--------------------|--------------|---------| -|`jp.cafebabe.pochi` | `kunai2` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-core` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-api` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-cmd` | `2.4.4` | +|`jp.cafebabe.pochi` | `kunai2` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-core` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-api` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-cmd` | `2.4.5` | ## Modules diff --git a/bin/build_site.sh b/bin/build_site.sh index 148e4e7e..53a6b65c 100755 --- a/bin/build_site.sh +++ b/bin/build_site.sh @@ -1,6 +1,6 @@ #! /bin/sh -VERSION="2.4.4" +VERSION="2.4.5" function build_apidocs() { mkdir -p site/msp diff --git a/bin/make_dist.sh b/bin/make_dist.sh index b6a11c16..2d5a9907 100755 --- a/bin/make_dist.sh +++ b/bin/make_dist.sh @@ -1,6 +1,6 @@ #! /bin/sh -VERSION="2.4.4" +VERSION="2.4.5" function mkdirIfNeeded () { if [ ! -d $1 ] ; then diff --git a/dockers/pochi-groovysh/Dockerfile b/dockers/pochi-groovysh/Dockerfile index 8dd93004..74137270 100644 --- a/dockers/pochi-groovysh/Dockerfile +++ b/dockers/pochi-groovysh/Dockerfile @@ -15,7 +15,7 @@ RUN apk --no-cache add openjdk11=11.0.4_p4-r1 \ # building pochi FROM alpine:3.10.1 -ARG PochiVersion="2.4.4" +ARG PochiVersion="2.4.5" ARG GroovyVersion="3.0.8" LABEL maintainer="Haruaki Tamada" \ diff --git a/dockers/pochi/Dockerfile b/dockers/pochi/Dockerfile index 41840c18..82e020fc 100644 --- a/dockers/pochi/Dockerfile +++ b/dockers/pochi/Dockerfile @@ -15,7 +15,7 @@ RUN apk --no-cache add openjdk11=11.0.4_p4-r1 \ # building pochi FROM alpine:3.10.1 -ARG PochiVersion="2.4.4" +ARG PochiVersion="2.4.5" LABEL maintainer="Haruaki Tamada" \ pochi-version="${PochiVersion}" \ diff --git a/kunai2/pom.xml b/kunai2/pom.xml index b561085a..2049398f 100644 --- a/kunai2/pom.xml +++ b/kunai2/pom.xml @@ -4,7 +4,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 4.0.0 diff --git a/pochi-api/pom.xml b/pochi-api/pom.xml index 2f7f5663..f33d10e5 100644 --- a/pochi-api/pom.xml +++ b/pochi-api/pom.xml @@ -6,7 +6,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 jp.cafebabe.pochi @@ -33,7 +33,7 @@ jp.cafebabe.pochi kunai2 - 2.4.4 + 2.4.5 compile diff --git a/pochi-cmd/pom.xml b/pochi-cmd/pom.xml index 27378751..e40036b9 100644 --- a/pochi-cmd/pom.xml +++ b/pochi-cmd/pom.xml @@ -6,7 +6,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 jp.cafebabe.pochi @@ -38,7 +38,7 @@ jp.cafebabe.pochi pochi-core - 2.4.4 + 2.4.5 compile diff --git a/pochi-core/pom.xml b/pochi-core/pom.xml index 87d2c779..6aefbd0c 100644 --- a/pochi-core/pom.xml +++ b/pochi-core/pom.xml @@ -4,7 +4,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 4.0.0 @@ -20,13 +20,13 @@ jp.cafebabe.pochi kunai2 - 2.4.4 + 2.4.5 compile jp.cafebabe.pochi pochi-api - 2.4.4 + 2.4.5 compile diff --git a/pochi-core/src/main/java/jp/cafebabe/pochi/Pochi.java b/pochi-core/src/main/java/jp/cafebabe/pochi/Pochi.java index b475447f..42a51054 100644 --- a/pochi-core/src/main/java/jp/cafebabe/pochi/Pochi.java +++ b/pochi-core/src/main/java/jp/cafebabe/pochi/Pochi.java @@ -8,7 +8,7 @@ import java.util.Optional; public class Pochi { - public static final String VERSION = "2.4.4"; + public static final String VERSION = "2.4.5"; private static final Pochi INSTANCE = new Pochi(); private final Path home; diff --git a/pom.xml b/pom.xml index 39a42e59..ac2f6fbe 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 pom diff --git a/site/content/_index.md b/site/content/_index.md index 8744aae2..c78803c1 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -9,11 +9,11 @@ draft: false [![codebeat badge](https://codebeat.co/badges/8e8c5e70-cb07-4f58-941c-3ddb64f3c059)](https://codebeat.co/projects/github-com-tamada-pochi-main) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg?style=flat)](https://github.com/tamada/pochi/blob/master/LICENSE) -[![Version](https://img.shields.io/badge/Version-2.4.4-green.svg)](https://github.com/tamada/pochi/releases/tag/v2.4.4) +[![Version](https://img.shields.io/badge/Version-2.4.5-green.svg)](https://github.com/tamada/pochi/releases/tag/v2.4.5) [![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.4271132-green.svg)](https://zenodo.org/badge/latestdoi/82773287) -[![Javadoc](https://img.shields.io/badge/Javadoc-v2.4.4-blue?logo=java)](https://tamada.github.io/pochi/apidocs) -[![Docker](https://img.shields.io/badge/Docker-ghcr.io%2Ftamada%2Fpochi%3A2.4.4-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) +[![Javadoc](https://img.shields.io/badge/Javadoc-v2.4.5-blue?logo=java)](https://tamada.github.io/pochi/apidocs) +[![Docker](https://img.shields.io/badge/Docker-ghcr.io%2Ftamada%2Fpochi%3A2.4.5-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) [![GitHub Discussion](https://img.shields.io/badge/GitHub-Discussions-blue?logo=github)](https://github.com/tamada/pochi/discussions) Detecting the software theft, the birthmark toolkit for the JVM platform. diff --git a/site/content/description.md b/site/content/description.md index fc6fe91c..bd288432 100644 --- a/site/content/description.md +++ b/site/content/description.md @@ -49,7 +49,8 @@ For more detail, see [:ant: Examples](../examples). Container images of **pochi** for Docker are: * [`ghcr.io/tamada/pochi`](https://github.com/users/tamada/packages/container/package/pochi) - * `2.4.4`, `latest` + * `2.4.5`, `latest` + * `2.4.4` * `2.4.3` * `2.4.2` * `2.4.1` @@ -74,7 +75,7 @@ Container images of **pochi** for Docker are: * `1.0.0` * accept only `.js` script files. -[![Docker](https://img.shields.io/badge/Docker-ghcir.io%2Ftamada%2Fpochi%3A2.4.4-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) +[![Docker](https://img.shields.io/badge/Docker-ghcir.io%2Ftamada%2Fpochi%3A2.4.5-blue?logo=docker)](https://github.com/users/tamada/packages/container/package/pochi) To run **pochi** on Docker container OS, type the following commands. diff --git a/site/content/install.md b/site/content/install.md index 49b21e07..24c40f18 100644 --- a/site/content/install.md +++ b/site/content/install.md @@ -47,10 +47,10 @@ Then, add the dependencies of your `pom.xml`. | groupId | artifactId | version | |--------------------|--------------|---------| -|`jp.cafebabe.pochi` | `kunai2` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-core` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-api` | `2.4.4` | -|`jp.cafebabe.pochi` | `pochi-cmd` | `2.4.4` | +|`jp.cafebabe.pochi` | `kunai2` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-core` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-api` | `2.4.5` | +|`jp.cafebabe.pochi` | `pochi-cmd` | `2.4.5` | ## :briefcase: Requirements diff --git a/site/pom.xml b/site/pom.xml index 662e045b..cd763b64 100644 --- a/site/pom.xml +++ b/site/pom.xml @@ -4,7 +4,7 @@ jp.cafebabe pochi - 2.4.4 + 2.4.5 4.0.0 @@ -20,19 +20,19 @@ jp.cafebabe.pochi kunai2 - 2.4.4 + 2.4.5 provided jp.cafebabe.pochi pochi-api - 2.4.4 + 2.4.5 provided jp.cafebabe.pochi pochi-core - 2.4.4 + 2.4.5 provided