Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump #107

Merged
merged 3 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main
- 'release/**'
# Nightly builds to ensure dependencies don't break anything
#schedule:
# - cron: '0 0 * * *'

jobs:
build:
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/scheduled-main-ci.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tagget release
name: Tagged release

on:
push:
Expand Down
23 changes: 23 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down