Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
merge develop into master
  • Loading branch information
Yelo420 authored Jul 12, 2023
2 parents 3e8443b + 0498b1e commit 599aa0e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deployment-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ jobs:
deploy:
permissions: write-all
runs-on: windows-latest
outputs:
version: ${{ steps.release.outputs.version }}

steps:
- name: Checkout repository
id: checkout
Expand Down Expand Up @@ -40,3 +43,15 @@ jobs:
upload_url: ${{steps.release.outputs.upload_url}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

notify_discord:
needs: deploy
runs-on: ubuntu-latest
steps:
- name: Send Discord Notification
id: discord
uses: Ilshidur/action-discord@master
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_BOT_WEBHOOK }}
with:
args: '@everyone New Release: ${{ github.event.repository.full_name }} v${{ needs.deploy.outputs.version }} has been deployed. Here are the changes: https://github.com/${{ github.event.repository.full_name }}/releases/latest'
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Crackpipe App Changelog

## 1.0.2
## 1.1.0
### Changes
- Show asterisks in registration password fields instead of clear text
- Notify user, when app is still running in the system tray
Expand Down
2 changes: 1 addition & 1 deletion crackpipe/ViewModels/SettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public string Version
{
get
{
return "1.0.2";
return "1.1.0";
}
}

Expand Down

0 comments on commit 599aa0e

Please sign in to comment.