Skip to content

Commit a72ed3b

Browse files
committed
Bump version
1 parent a7ee786 commit a72ed3b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ An example exercise is provided in the `example` directory:
6464
- `solution/`: A reference implementation of the correct solution.
6565
- `tests/`: Contains pre-configured, Eos-compatible tests ready for auto-grading and CI execution.
6666

67-
Use the following Docker image in your auto-grader: `ghcr.io/ls1intum/eos:1.0.0-rc0`
67+
Use the following Docker image in your auto-grader: `ghcr.io/ls1intum/eos:1.0.0`
6868

6969
### Manual Setup
7070

@@ -75,7 +75,7 @@ If you prefer to set up your project independently, the following is a brief, no
7575
1. Add the dependency:
7676

7777
```groovy
78-
testImplementation 'de.tum.cit.ase:eos:1.0.0-rc0'
78+
testImplementation 'de.tum.cit.ase:eos:1.0.0'
7979
```
8080

8181
2. Configure within the test task in `build.gradle`:
@@ -118,4 +118,4 @@ Alternatively, the reproducible docker-based execution can be used to avoid thes
118118
> ⚠️ Remember to remove or comment out OS-specific annotations before pushing to your remote repository. CI pipelines should only run with the minimal required permissions.
119119
120120
#### Docker-Based Execution
121-
For consistent and reproducible test execution, you can run tests using Docker: `docker run -it --rm -v ./:/app -w /app ghcr.io/ls1intum/eos:1.0.0-rc0 ./gradlew clean test`
121+
For consistent and reproducible test execution, you can run tests using Docker: `docker run -it --rm -v ./:/app -w /app ghcr.io/ls1intum/eos:1.0.0 ./gradlew clean test`

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99

1010
group = "de.tum.cit.ase"
1111
archivesBaseName = "eos"
12-
version = "1.0.0-rc0"
12+
version = "1.0.0"
1313

1414
repositories {
1515
mavenCentral()

docker/artemis-java-template/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repositories {
2121

2222
dependencies {
2323
testImplementation 'net.bytebuddy:byte-buddy:1.15.11'
24-
testImplementation 'de.tum.cit.ase:eos:1.0.0-rc0'
24+
testImplementation 'de.tum.cit.ase:eos:1.0.0'
2525

2626
implementation 'org.apache.commons:commons-lang3:3.17.0'
2727
}

example/tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ext {
1919
}
2020

2121
dependencies {
22-
testImplementation 'de.tum.cit.ase:eos:1.0.0-rc0'
22+
testImplementation 'de.tum.cit.ase:eos:1.0.0'
2323

2424
implementation 'org.apache.commons:commons-lang3:3.17.0'
2525
}

0 commit comments

Comments
 (0)