Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jun 21, 2024
1 parent 6e8d3c2 commit 051f744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bld/java/rife/bld/extension/ExecOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ExecOperationBuild extends Project {
public ExecOperationBuild() {
pkg = "rife.bld.extension";
name = "ExecOperation";
version = version(1, 0, 1, "SNAPSHOT");
version = version(1, 0, 1);

javaRelease = 17;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/rife/bld/extension/ExecOperationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ExecOperationTest {
void testCommand() {
var op = new ExecOperation().fromProject(new WebProject())
.command(FOO, "bar");
assertThat(op.command()).isEqualTo(List.of(FOO, "bar"));
assertThat(op.command()).containsExactly(FOO, "bar");
}

@Test
Expand Down

0 comments on commit 051f744

Please sign in to comment.