Skip to content

Commit

Permalink
Merge branch 'release/1.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jun 17, 2023
2 parents 23bea28 + 1c87644 commit 665ce32
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v3.5.3

# Validate wrapper
- name: Gradle Wrapper Validation
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v3.5.3

# Remove old release drafts by using the curl request for the available releases with draft flag
- name: Remove Old Release Drafts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v3.5.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

# Create pull request
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5.0.1
uses: peter-evans/create-pull-request@v5.0.2
with:
delete-branch: true
branch-suffix: short-commit-hash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v3.5.3

# Run Qodana inspections
- name: Qodana - Code Inspection
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3.5.2
uses: actions/checkout@v3.5.3
with:
ref: ${{ github.event.release.tag_name }}

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.3] - 2023-06-17

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.0.2] - 2023-06-03

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fun properties(key: String) = project.findProperty(key).toString()
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.8.21"
id("org.jetbrains.intellij") version "1.13.3"
id("org.jetbrains.intellij") version "1.14.1"
// Gradle Changelog Plugin
id("org.jetbrains.changelog") version "2.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ pluginName = IntelliJ Redwood Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-redwood

# SemVer format -> https://semver.org
pluginVersion = 1.0.2
pluginVersion = 1.0.3

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 213
pluginUntilBuild = 231.*
pluginUntilBuild = 232.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
Expand Down

0 comments on commit 665ce32

Please sign in to comment.