From f284cc13fd0caaf5410cb64ae2118c8bcb7de064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Spasic=CC=81?= Date: Tue, 4 Jun 2024 22:59:14 +0200 Subject: [PATCH] Bump version. --- DEV.md | 10 ++++++++++ README.md | 4 ++-- build.gradle | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 DEV.md diff --git a/DEV.md b/DEV.md new file mode 100644 index 0000000..ad7b538 --- /dev/null +++ b/DEV.md @@ -0,0 +1,10 @@ +# Development notes + +## Releasing a new version + ++ Update the version number in `build.gradle` ++ Update the version number in `README.md` ++ Commit and push the changes ++ Run `just releace-create ` ++ Create the release on GitHub ++ Run `just release-publish` diff --git a/README.md b/README.md index 4435069..a0adc10 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,14 @@ Maven: org.jodd julian-day - 7.1.0 + 7.2.0 ``` Gradle: ```groovy -implementation 'org.jodd:julian-day:7.1.0' +implementation 'org.jodd:julian-day:7.2.0' ``` Create `JulianDay` in different ways: diff --git a/build.gradle b/build.gradle index 39715cd..2a85289 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ repositories { } group = 'org.jodd' -version = '7.1.0' +version = '7.2.0' rootProject.description = 'Julian Day'