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

Bump plugin version and update default Dafny version in docs #21

Merged
merged 1 commit into from
Jan 10, 2025
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ For example:

```kotlin
plugins {
id("org.dafny.dafny").version("0.1.0")
id("org.dafny.dafny").version("0.2.0")
}

dafny {
dafnyVersion.set("4.1.0")
dafnyVersion.set("4.9.1")
}

dependencies {
implementation("org.dafny:DafnyRuntime:4.1.0")
implementation("org.dafny:DafnyRuntime:4.9.1")
}

```
Expand All @@ -31,7 +31,7 @@ dependencies {

The plugin provides two tasks:

* `verifyDafny`, which verifes all Dafny code under the
* `verifyDafny`, which verifies all Dafny code under the
`src/main/dafny` directory.
* `translateDafnyToJava`, which translates Dafny code
verified by `verifyDafny`
Expand All @@ -53,7 +53,7 @@ in the `dafny` extension:

```kotlin
dafny {
dafnyVersion.set("4.1.0")
dafnyVersion.set("4.9.1")

optionsMap.put("unicode-char", false)
optionsMap.put("isolate-assertions", true)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "org.dafny"
version = "0.1.0"
version = "0.2.0"

repositories {
// Use Maven Central for resolving dependencies.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/dafny/gradle/plugin/DafnyPluginTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.gradle.testfixtures.ProjectBuilder;
import org.junit.jupiter.api.Test;

/** A simple unit test for the 'dafny.gradle.plugin.greeting' plugin. */
/** A simple unit test for the 'org.dafny.dafny' plugin. */
class DafnyPluginTest {
@Test
void pluginRegistersATask() {
Expand Down
Loading