Skip to content

Commit

Permalink
Cleaned up examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jul 16, 2024
1 parent fb75d12 commit accf0d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
./bld update-major run
./bld update-minor run
./bld update-patch run
./bld update-release run
```

# Delete Version Properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public void updateRelease() throws Exception {
.entry(new EntryDate("release").now().pattern("yyyyMMddHHmmss"))
// prepend 'beta.' to the release
.entry(new Entry("release").modify("beta.", (v, s) -> s + v))
.entry(buildDateEntry)
.execute();
}

Expand Down
8 changes: 3 additions & 5 deletions examples/version.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#
#Sun Oct 22 14:31:42 PDT 2023
release=beta.20231022143142
version.major=1
version.minor=0
version.patch=1
#Tue Jul 16 16:16:38 PDT 2024
build.date=2024-07-16
release=beta.20240716161638

0 comments on commit accf0d6

Please sign in to comment.