From 155b8610951c5ce611b2dddef1f0fe42cd2fcbb9 Mon Sep 17 00:00:00 2001 From: Falko Schumann Date: Mon, 31 Jul 2023 20:26:12 +0200 Subject: [PATCH] docs: prepare release --- CHANGELOG.md | 9 ++++++++- CONTRIBUTING.md | 31 +++++++++++++++++++------------ build.gradle | 3 ++- 3 files changed, 29 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1767d7..8fa4528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +## [1.3.0] - 2023-07-31 + ## Added - Create time report. @@ -48,7 +50,12 @@ and this project adheres to - Ask at a fixed intervall like 15, 20 30 or 60 minutes. - Notify when interval expired. -[Unreleased]: https://github.com/falkoschumann/activity-sampling-java/compare/v1.2.0...HEAD +[Unreleased]: https://github.com/falkoschumann/activity-sampling-java/compare/v1.3.0...HEAD + +[1.3.0]: https://github.com/falkoschumann/activity-sampling-java/compare/v1.2.0...v1.3.0 + [1.2.0]: https://github.com/falkoschumann/activity-sampling-java/compare/v1.1.0...v1.2.0 + [1.1.0]: https://github.com/falkoschumann/activity-sampling-java/compare/v1.0.0...v1.1.0 + [1.0.0]: https://github.com/falkoschumann/activity-sampling-java/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c2ac277..1b420fe 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,18 +1,25 @@ # Contributing -- Code Style - [Google Java Style Guide][https://google.github.io/styleguide/javaguide.html] - wird beim Build geprüft und mit `./build.sh format` formatiert -- Release erstellen mit `./build.sh` -- Build for macOS Intel and M1 +Build with `./build.sh`. Other useful tasks: + +- `./build clean` - Remove build artifacts. +- `./build format` - Format the source code according to the code style. + +Used code style: +[Google Java Style Guide](https://google.github.io/styleguide/javaguide.html) + +Build for macOS Intel and M1. ### Distribute for macOS -Im Folgenden müssen `$MAC_SIGNING_USERNAME`, `$MAC_SIGNING_PASSWORD` -und `{RequestUUID}` passend ersetzt werden. +Replace `$MAC_SIGNING_USERNAME`, `$MAC_SIGNING_PASSWORD` and `{RequestUUID}` +with appropriate values. - xcrun notarytool submit \ - --team-id QC6EN37P56 \ - --apple-id $MAC_SIGNING_USERNAME \ - --password $MAC_SIGNING_PASSWORD \ - activity-sampling-1.2.0-m1.dmg --wait +```bash +xcrun notarytool submit \ + --team-id QC6EN37P56 \ + --apple-id $MAC_SIGNING_USERNAME \ + --password $MAC_SIGNING_PASSWORD \ + --wait \ + activity-sampling-1.0.0-m1.dmg +``` diff --git a/build.gradle b/build.gradle index 3798296..bcb8e49 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ plugins { } group 'de.muspellheim' -version '1.2.0' +version '1.3.0' ext { copyrightYear = LocalDate.now().year @@ -77,6 +77,7 @@ jacocoTestReport { } checkstyle { + toolVersion = "10.12.2" var archive = configurations.checkstyle.filter { it.name.startsWith("checkstyle") }