From 8cf24e91a0f019efc8b805fac7e2b797667976ac Mon Sep 17 00:00:00 2001 From: Jan Bobolz Date: Tue, 4 Apr 2023 11:37:12 +0100 Subject: [PATCH 1/3] Add CITATION.cff --- CITATION.cff | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..f0d3cb8 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,23 @@ +# This CITATION.cff file was generated with cffinit. +# Visit https://bit.ly/cffinit to generate yours today! + +cff-version: 1.2.0 +title: Cryptimeleon Craco +message: >- + When writing research papers, please cite our paper https://eprint.iacr.org/2021/961. +type: software +authors: + - given-names: Jan + family-names: Bobolz + - given-names: Denis + family-names: Diemert + - given-names: Fabian + family-names: Eidens + - given-names: Raphael + family-names: Heitjohann + - given-names: Paul + family-names: Kramer + - name: "Open-Source Contributors" +repository-code: 'https://github.com/cryptimeleon/craco' +url: 'https://cryptimeleon.org' +license: Apache-2.0 From bd1459dd46ba954e06efd69b3ae155979e9c840c Mon Sep 17 00:00:00 2001 From: Jan Bobolz Date: Wed, 5 Apr 2023 13:07:46 +0100 Subject: [PATCH 2/3] Version bump --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a4b22f5..bb2fddf 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { group = 'org.cryptimeleon' archivesBaseName = project.name boolean isRelease = project.hasProperty("release") -version = '4.0.1' + (isRelease ? "" : "-SNAPSHOT") +version = '4.0.2' + (isRelease ? "" : "-SNAPSHOT") sourceCompatibility = 1.8 From b9ff4ae9eacb0d46661b5c53a24d6a5a75b9cc15 Mon Sep 17 00:00:00 2001 From: Jan Bobolz Date: Wed, 5 Apr 2023 13:31:33 +0100 Subject: [PATCH 3/3] Remove scheduled builds --- .github/workflows/dev-ci.yaml | 4 ++-- .github/workflows/main-ci.yaml | 3 +++ .github/workflows/scheduled-main-ci.yaml | 20 ------------------- ...agget_release.yaml => tagged_release.yaml} | 2 +- 4 files changed, 6 insertions(+), 23 deletions(-) delete mode 100644 .github/workflows/scheduled-main-ci.yaml rename .github/workflows/{tagget_release.yaml => tagged_release.yaml} (97%) diff --git a/.github/workflows/dev-ci.yaml b/.github/workflows/dev-ci.yaml index 584e328..bd8ac3f 100644 --- a/.github/workflows/dev-ci.yaml +++ b/.github/workflows/dev-ci.yaml @@ -6,8 +6,8 @@ on: - main - 'release/**' # Nightly builds to ensure dependencies don't break anything - schedule: - - cron: '0 0 * * *' + #schedule: + # - cron: '0 0 * * *' jobs: build: diff --git a/.github/workflows/main-ci.yaml b/.github/workflows/main-ci.yaml index 2d996d7..e7fd653 100644 --- a/.github/workflows/main-ci.yaml +++ b/.github/workflows/main-ci.yaml @@ -5,6 +5,9 @@ on: branches: - main - 'release/**' + # Nightly builds to ensure dependencies don't break anything + #schedule: + # - cron: '0 0 * * *' jobs: build: diff --git a/.github/workflows/scheduled-main-ci.yaml b/.github/workflows/scheduled-main-ci.yaml deleted file mode 100644 index 0ad9fe4..0000000 --- a/.github/workflows/scheduled-main-ci.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: Scheduled Main Java CI - -on: - # Nightly builds to ensure dependencies don't break anything - schedule: - - cron: '0 0 * * *' - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - ref: main # need to specify branch else it will check out develop - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Build with Gradle - run: ./gradlew build -PcheckoutIfCloned -Prelease diff --git a/.github/workflows/tagget_release.yaml b/.github/workflows/tagged_release.yaml similarity index 97% rename from .github/workflows/tagget_release.yaml rename to .github/workflows/tagged_release.yaml index 8cd0941..3399eff 100644 --- a/.github/workflows/tagget_release.yaml +++ b/.github/workflows/tagged_release.yaml @@ -1,4 +1,4 @@ -name: Tagget release +name: Tagged release on: push: