Skip to content

Commit

Permalink
Merge branch 'release/1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrimaeon committed May 13, 2022
2 parents 1d3a9eb + 06a059b commit 9ac7e9e
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
target-branch: "develop"

- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
target-branch: "develop"
29 changes: 29 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,32 @@ jobs:
with:
tag_name: ${{ github.ref }}
body_file: ./RELEASE_NOTES.md
- name: Notify Slack
uses: chrimaeon/github-slack-action@v1
with:
slack_token: ${{ secrets.SLACK_TOKEN }}
channel: ${{ secrets.SLACK_CHANNEL }}
text: "${{ github.ref_name }} on ${{ github.repository }} released! :raised_hands:"
blocks: |
[
{
"type": "header",
"text": {
"type": "plain_text",
"text": "New release for ${{ github.repository }}"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Version*\n${{ github.ref_name }}"
},
{
"type": "mrkdwn",
"text": "*URL*\n${{ steps.create_release.outputs.html_url }}"
}
]
}
]
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
### Added

### Changed
- Update Retrace to version 7.2.1


### Deprecated

Expand All @@ -15,11 +13,11 @@

### Security

## [1.4.0]
## [1.5.0]
### Added

### Changed
- Update Retrace to version 7.1.1
- Update Retrace to version 7.2.1

### Deprecated

Expand All @@ -29,6 +27,10 @@

### Security

## [1.4.0]
### Changed
- Update Retrace to version 7.1.1

## [1.3.0]
### Added
- Settings for verbose output and de-obfuscate all class names
Expand All @@ -42,4 +44,4 @@

## [1.1.0]
### Added
- Show dialog if mapping file cannot be found
- Show dialog if mapping file cannot be found
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {
}

group = "com.cmgapps.intellij"
version = "1.4.0"
version = "1.5.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit 9ac7e9e

Please # to comment.