Skip to content

Commit

Permalink
Bump version: 0.0.1 → 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joacortez committed May 25, 2024
1 parent d30c2ab commit 11c9f2a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True

[bumpversion:file:installer/product.wxs]

[bumpversion:file:.github/workflows/WinInstaller.yml]

[bumpversion:file:build.bat]
4 changes: 2 additions & 2 deletions .github/workflows/WinInstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
with:
# NOTE why does github token not work?
token: ${{ secrets.ACTIONS_TOKEN }}
tag_name: 'v0.0.1'
name: 'fzf-win v0.0.1'
tag_name: 'v0.0.2'
name: 'fzf-win v0.0.2'
files: build/**/*.msi
body: |
This is a pre-release of fzf-win
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setlocal enabledelayedexpansion

:: Set common variables
set "version=v0.0.1"
set "version=v0.0.2"
set "platform=Windows"
set "installerdir=installer\"
set "builddir=build\"
Expand Down
6 changes: 3 additions & 3 deletions installer/product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<Product Id="*" UpgradeCode="4641175c-6f66-4b0a-8f1a-940ee711444f"
Name="fzf-win"
Version="0.0.1"
Version="0.0.2"
Manufacturer="Joaquin Cortez"
Language="1033">

Expand All @@ -21,8 +21,8 @@
<Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>

<Upgrade Id="4641175c-6f66-4b0a-8f1a-940ee711444f">
<UpgradeVersion Minimum="0.0.1" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="0.0.1" IncludeMinimum="yes" IncludeMaximum="no"
<UpgradeVersion Minimum="0.0.2" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="0.0.2" IncludeMinimum="yes" IncludeMaximum="no"
Property="OLDERVERSIONBEINGUPGRADED"/>
</Upgrade>
<Condition Message="A newer version of this software is already installed.">NOT NEWERVERSIONDETECTED</Condition>
Expand Down

0 comments on commit 11c9f2a

Please sign in to comment.