From df1ace63eea165c0ed936c14d0f6bad20186d89e Mon Sep 17 00:00:00 2001 From: "Florine W. Dekker" Date: Wed, 16 Oct 2024 19:03:11 +0200 Subject: [PATCH] Prepare for v3.3.3 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/RELEASE_CHECKLIST.md | 2 +- CHANGELOG.md | 2 +- README.md | 5 +++-- gradle.properties | 2 +- src/main/kotlin/com/fwdekker/randomness/Settings.kt | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dea31905b..b48f38931 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ assignees: FWDekker **Version information** - - Randomness version [e.g. 3.3.2]: + - Randomness version [e.g. 3.3.3]: - IDE version [e.g. IntelliJ Community 2024.2.3]: - Operating system [e.g. Windows 11, Ubuntu 24.04.1, macOS 15.0]: diff --git a/.github/RELEASE_CHECKLIST.md b/.github/RELEASE_CHECKLIST.md index 532187e48..4a4adedde 100644 --- a/.github/RELEASE_CHECKLIST.md +++ b/.github/RELEASE_CHECKLIST.md @@ -3,7 +3,7 @@ * Bump the version number according to [Semantic Versioning](https://semver.org/). * Update [`README.md`](../README.md), [`CHANGELOG.md`](../CHANGELOG.md), and [`description.html`](../src/main/resources/META-INF/description.html) if necessary. * Make sure to preview the change notes in the IDE by loading the plugin. - * Make sure that even subsections with a single item use bullet points, otherwise the entry will not show in the IDE. + * Make sure that all subsections use bullet points (even those with only one entry), otherwise the subsection will not show in the IDE. * Make sure the list of acknowledgements is up-to-date. * Update screenshots and GIFs in `.github/img/` and on the plugin repository if necessary. * Set the global UI scale to 200% before recording/screenshotting to ensure high-resolution images. diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f3e5f95..548dce704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Changelog -## 9.9.9-unreleased +## 3.3.3 -- 2024-10-16 ### Changed * In template icons, change the order of scheme colors to be clockwise starting from the top, instead of counterclockwise starting on the right. diff --git a/README.md b/README.md index ebb8d4c27..f16cbc446 100644 --- a/README.md +++ b/README.md @@ -98,8 +98,9 @@ $ gradlew test # Run tests (and collect coverage) $ gradlew test --tests X # Run tests in class X (package name optional) $ gradlew test -Pkotest.tags="X" # Run tests matching tag(s) X (also supports not (!), and (&), or (|)) $ gradlew koverHtmlReport # Create HTML coverage report for previous test run -$ gradlew check # Run tests and static analysis -$ gradlew runPluginVerifier # Check for compatibility issues +$ gradlew detekt # Run static analysis +$ gradlew check # Run all tests and static analysis +$ gradlew verifyPlugin # Check for compatibility issues ``` #### 🏷️ Tagging and filtering tests diff --git a/gradle.properties b/gradle.properties index 3845ec981..80f0264d9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ group=com.fwdekker # Version number should also be updated in `com.fwdekker.randomness.PersistentSettings.Companion.CURRENT_VERSION`. -version=3.3.3-dev +version=3.3.3 # Compatibility # * `pluginSinceBuild`: diff --git a/src/main/kotlin/com/fwdekker/randomness/Settings.kt b/src/main/kotlin/com/fwdekker/randomness/Settings.kt index ed74a9ae8..784b4466f 100644 --- a/src/main/kotlin/com/fwdekker/randomness/Settings.kt +++ b/src/main/kotlin/com/fwdekker/randomness/Settings.kt @@ -124,6 +124,6 @@ internal class PersistentSettings : PersistentStateComponent { /** * The currently-running version of Randomness. */ - const val CURRENT_VERSION: String = "3.3.2" // Synchronize this with the version in `gradle.properties` + const val CURRENT_VERSION: String = "3.3.3" // Synchronize this with the version in `gradle.properties` } }