Skip to content

Commit

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

Expand All @@ -8,3 +8,5 @@ tag = True
[bumpversion:file:.github/workflows/WinInstaller.yml]

[bumpversion:file:build.bat]

[bumpversion:file:README.md]
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.2'
name: 'fzf-win v0.0.2'
tag_name: 'v1.0.0'
name: 'fzf-win v1.0.0'
files: build/**/*.msi
body: |
This is a pre-release of fzf-win
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ So why wait? Start exploring `fzf-win` today and discover a better way to naviga

## Installation 📥

Getting started with `fzf-win` is easy! You can either download the latest installer from our [releases page](https://github.com/joacortez/fzf-win/releases) or directly from this [link](https://github.com/joacortez/fzf-win/releases/download/v0.0.2/fzf-win_v0.0.2_x86_Windows.msi) 📦.
Getting started with `fzf-win` is easy! You can either download the latest installer from our [releases page](https://github.com/joacortez/fzf-win/releases) or directly from this [link](https://github.com/joacortez/fzf-win/releases/download/v1.0.0/fzf-win_v1.0.0_x86_Windows.msi) 📦.

For the DIY enthusiasts out there, you can also clone the repo and use `build.bat` to build the installer yourself. No compilation is needed, just add the `src` directory to your path and you're good to go! 🛠️

Expand All @@ -44,7 +44,7 @@ You can easily check if these tools are installed by running the following comma
ff --health
```

While older versions of these tools may work, they are not officially supported. If you encounter any issues or want to request support for a specific version, don't hesitate to open an [issue](#). We're here to help! :raised_hands:
While older versions of these tools may work, they are not officially supported. If you encounter any issues or want to request support for a specific version, don't hesitate to open an [issue](https://github.com/joacortez/fzf-win/issues). We're here to help! :raised_hands:

## Usage 🚀

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.2"
set "version=v1.0.0"
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.2"
Version="1.0.0"
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.2" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="0.0.2" IncludeMinimum="yes" IncludeMaximum="no"
<UpgradeVersion Minimum="1.0.0" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="1.0.0" 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 e9f24e9

Please sign in to comment.