Skip to content

Commit

Permalink
Merge pull request #27 from cryptimeleon/develop
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
JanBobolz authored Apr 5, 2023
2 parents c07948e + 74d6820 commit 5d8de8b
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 32 deletions.
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
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
name: Scheduled Release Java CI
name: Main Java CI

on:
push:
branches:
- main
- 'release/**'
# Nightly builds to ensure dependencies don't break anything
schedule:
- cron: '0 0 * * *'
#schedule:
# - cron: '0 0 * * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: main
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/release-ci.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Publishing
name: Tagged release

on:
push:
branches:
- main
tags:
- v[1-9]+.[0-9]+.[0-9]+
jobs:
Expand All @@ -27,6 +25,8 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
draft: false
files: |
LICENSE
build/libs/*.jar
id: "automatic_releases"
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/predenc'
url: 'https://cryptimeleon.org'
license: Apache-2.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Build Status](https://github.com/cryptimeleon/predenc/workflows/Development%20Java%20CI/badge.svg)
![Build Status](https://github.com/cryptimeleon/predenc/workflows/Release%20Java%20CI/badge.svg)
![Build Status](https://github.com/cryptimeleon/predenc/workflows/Scheduled%20Release%20Java%20CI/badge.svg)
![Build Status](https://github.com/cryptimeleon/predenc/workflows/Main%20Java%20CI/badge.svg)
![Build Status](https://github.com/cryptimeleon/predenc/workflows/Scheduled%20Main%20Java%20CI/badge.svg)
# Predenc

The Cryptimeleon Predenc project contains various predicate encryption implementations such as attribute-based encryption or identity-based encryption.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
group 'org.cryptimeleon'
archivesBaseName = project.name
boolean isRelease = project.hasProperty("release")
version = '2.0.0' + (isRelease ? "" : "-SNAPSHOT")
version = '2.0.1' + (isRelease ? "" : "-SNAPSHOT")

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down

0 comments on commit 5d8de8b

Please sign in to comment.