Skip to content

Commit

Permalink
Merge branch 'release/1.2.16'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Apr 25, 2023
2 parents 0c72ea5 + fde6046 commit c56f145
Show file tree
Hide file tree
Showing 12 changed files with 89 additions and 57 deletions.
27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Bug report
description: Create a report to help us improve

title: '[Bug]: '
labels:
- bug
assignees:
- nekofar

body:
- type: textarea
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
placeholder: Describe the bug here.

- type: textarea
attributes:
label: Steps to reproduce the behavior
description: List the steps to reproduce the behavior, including any necessary environment details.
placeholder: List the steps to reproduce here.

- type: textarea
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
placeholder: Describe the expected behavior here.

- type: textarea
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain the problem.
placeholder: Add any relevant screenshots here.

- type: textarea
attributes:
label: Additional context
description: Add any other context about the problem here.
placeholder: Add any additional context here.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Feature request
description: Suggest an idea for this project

title: '[Feature]: '
labels:
- enhancement
assignees:
- nekofar

body:
- type: textarea
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when ...
placeholder: Describe the problem here.

- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
placeholder: Describe the solution you'd like here.

- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
placeholder: Describe alternatives here.

- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
placeholder: Add any additional context or screenshots here.
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/[email protected].0
uses: actions/[email protected].2

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

# Check out current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

# 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/[email protected].0
uses: actions/[email protected].2
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@v4.2.4
uses: peter-evans/create-pull-request@v5.0.0
with:
delete-branch: true
branch-suffix: short-commit-hash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2022.3.4
uses: JetBrains/qodana-action@v2023.1.0

# Uploading a SARIF-formatted Qodana report to GitHub
- name: Uploading Qodana report to GitHub
if: ${{ false }}
uses: github/codeql-action/upload-sarif@v2.2.9
uses: github/codeql-action/upload-sarif@v2.3.0
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json

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/[email protected].0
uses: actions/[email protected].2
with:
ref: ${{ github.event.release.tag_name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

# Setup Java 11 environment for the next steps
- name: Setup Java
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.2.16] - 2023-04-25

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.2.15] - 2023-04-01

### 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 Hardhat Plugin
pluginRepositoryUrl = https://github.com/nekofar/intellij-hardhat

# SemVer format -> https://semver.org
pluginVersion = 1.2.15
pluginVersion = 1.2.16

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down

0 comments on commit c56f145

Please sign in to comment.