Skip to content

Commit

Permalink
Merge branch 'release/1.0.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Dec 12, 2023
2 parents ff8c6a1 + 01a03cf commit 424e223
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 19 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0

# Set environment variables
- name: Export Properties
Expand Down Expand Up @@ -140,14 +140,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0

# Run tests
- name: Run Tests
Expand Down Expand Up @@ -184,14 +184,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2023.2.6
uses: JetBrains/qodana-action@v2023.2.9
with:
cache-default-branch-only: true

Expand All @@ -213,14 +213,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17
Expand All @@ -274,7 +274,7 @@ jobs:
# Create a new release draft which is not publicly visible and requires manual acceptance
- name: Create Release Draft
uses: nekofar/create-github-release@v1.0.12
uses: nekofar/create-github-release@v1.0.13
with:
tag: v${{ needs.build.outputs.version }} # The name of the tag to be released
title: v${{ needs.build.outputs.version }} # The title for the release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v2.1.1
uses: orhun/git-cliff-action@v2.3.0
id: git-cliff
with:
config: cliff.toml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0

# Publish the plugin to the Marketplace
- name: Publish Plugin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

# Setup Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3.13.0
uses: actions/setup-java@v4.0.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0

# Run IDEA prepared for UI testing
- name: Run IDE
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [1.0.10] - 2023-12-12

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.0.9] - 2023-10-29

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginName = IntelliJ Docusaurus Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-docusaurus

# SemVer format -> https://semver.org
pluginVersion = 1.0.9
pluginVersion = 1.0.10

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
# libraries
annotations = "24.0.1"
annotations = "24.1.0"

# plugins
kotlin = "1.9.10"
kotlin = "1.9.21"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.16.0"
qodana = "0.1.13"
kover = "0.7.3"
kover = "0.7.5"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand Down

0 comments on commit 424e223

Please sign in to comment.