From ac7c64aa6c1999ec558e179d51aaf3089d900320 Mon Sep 17 00:00:00 2001 From: Jonas Schaub <44881147+JonasSchaub@users.noreply.github.com> Date: Wed, 5 Jul 2023 22:05:21 +0200 Subject: [PATCH] v1.0.2.1 fixing actions jobs supposed to be triggered at release, hopefully --- .github/workflows/publish-javadoc.yml | 2 +- .github/workflows/publish-to-maven-central.yml | 2 +- CITATION.cff | 4 ++-- build.gradle | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-javadoc.yml b/.github/workflows/publish-javadoc.yml index b5832cf..20c9683 100644 --- a/.github/workflows/publish-javadoc.yml +++ b/.github/workflows/publish-javadoc.yml @@ -6,7 +6,7 @@ name: Deploy Javadoc on: release: - types: [created] #alternatives: released, published, + types: [published] #alternatives: released, published, created #push: #branches: #- main diff --git a/.github/workflows/publish-to-maven-central.yml b/.github/workflows/publish-to-maven-central.yml index a226ac4..8fb24fe 100644 --- a/.github/workflows/publish-to-maven-central.yml +++ b/.github/workflows/publish-to-maven-central.yml @@ -14,7 +14,7 @@ on: #push: #branches: [ "main" ] release: - types: [created] + types: [published] jobs: publish: runs-on: ubuntu-latest diff --git a/CITATION.cff b/CITATION.cff index 8a70a24..3c3ca0a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,6 +1,6 @@ cff-version: 1.2.0 title: ART2a-Clustering-for-Java -version: 1.0.0.0 +version: 1.0.2.1 message: "If you use this software, please cite it as below." type: software authors: @@ -19,7 +19,7 @@ authors: - family-names: "Zielesny" given-names: "Achim" orcid: "https://orcid.org/0000-0003-0722-4229" -date-released: 2023-06-23 +date-released: 2023-07-05 doi: "10.5281/zenodo.8075213" url: "https://github.com/JonasSchaub/ART2a-Clustering-for-Java" license: GPL-3.0 diff --git a/build.gradle b/build.gradle index cac061f..5dab7ec 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ plugins { group = 'io.github.jonasschaub' archivesBaseName = 'ART2a-Clustering-for-Java' //see also version for publishing below! -version = '1.0.2.0' +version = '1.0.2.1' //sourceCompatibility = 1.17 @@ -99,7 +99,7 @@ publishing { groupId = 'io.github.jonasschaub' artifactId = 'ART2a-Clustering-for-Java' //note: this version has been published, do not try to publish it again! versions 1.0.1.0 and 1.0.1.1 were also already used for publishing! - version = '1.0.2.0' + version = '1.0.2.1' from components.java