Skip to content

Commit 15f8986

Browse files
committed
bump hard coded version strings to 1.0.0
1 parent 7580ecd commit 15f8986

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
if [ -d .git ]; then
66
git describe --always --tags --dirty >version # get version from git
77
else
8-
echo 0.10.7 >version # hard coded versions
8+
echo 1.0.0 >version # hard coded versions
99
fi
1010

1111
libtoolize

cava.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <windows.h>
3131
#define PATH_MAX 260
3232
#define PACKAGE "cava"
33-
#define VERSION "0.10.7"
33+
#define VERSION "1.0.0"
3434
#define _CRT_SECURE_NO_WARNINGS 1
3535
#endif // _WIN32
3636

cava_win/setup.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
77
AppId={{B8D2AE6A-71E4-42E3-8C9F-33245C657272}
88
AppName=cava
9-
AppVersion=0.10.7
10-
;AppVerName=cava 0.10.7
9+
AppVersion=1.0.0
10+
;AppVerName=cava 1.0.0
1111
AppPublisher=karlstav
1212
AppPublisherURL=https://github.com/karlstav/cava
1313
AppSupportURL=https://github.com/karlstav/cava
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<resources>
22
<string name="app_name">cava</string>
3-
<string name="app_ver" translatable="false">0.10.7</string>
3+
<string name="app_ver" translatable="false">1.0.0</string>
44
</resources>

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cava",
3-
"version": "0.10.7",
3+
"version": "1.0.0",
44
"dependencies": [
55
"fftw3",
66
"pthreads",

0 commit comments

Comments
 (0)