From dd0fc74e669c46c32b9df50b8d23b69baed3810e Mon Sep 17 00:00:00 2001 From: Jan Bobolz Date: Thu, 12 Jan 2023 15:03:28 +0100 Subject: [PATCH] Version bump in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f2f81e7d..31eee35b 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ To add the newest Craco version as a dependency, add this to your project's POM: org.cryptimeleon craco - [3.0,) + [4.0,) ``` @@ -74,7 +74,7 @@ To add the newest Craco version as a dependency, add this to your project's POM: Craco is published via Maven Central. Therefore, you need to add `mavenCentral()` to the `repositories` section of your project's `build.gradle` file. -Then, add `implementation group: 'org.cryptimeleon', name: 'craco', version: '3.+'` to the `dependencies` section of your `build.gradle` file. +Then, add `implementation group: 'org.cryptimeleon', name: 'craco', version: '4.+'` to the `dependencies` section of your `build.gradle` file. For example: @@ -84,7 +84,7 @@ repositories { } dependencies { - implementation group: 'org.cryptimeleon', name: 'craco', version: '3.+' + implementation group: 'org.cryptimeleon', name: 'craco', version: '4.+' } ```