Skip to content

Commit 12e1c42

Browse files
committed
Release v0.4.0-rc1
beta because it's not 100% fully tested, but we up there
1 parent 6a931a6 commit 12e1c42

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.15)
22

3-
project(oshot VERSION 0.3.0 LANGUAGES C CXX)
3+
project(oshot VERSION 0.4.0-rc1 LANGUAGES C CXX)
44

55
if(APPLE)
66
enable_language(OBJC OBJCXX)

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ endif
6262

6363
NAME = oshot
6464
TARGET ?= $(NAME)
65-
OLDVERSION = 0.2.3
66-
VERSION = 0.3.0
65+
OLDVERSION = 0.3.0
66+
VERSION = 0.4.0-rc1
6767
SRC = $(wildcard src/*.cpp)
6868
OBJ = $(SRC:.cpp=.o)
6969
LDFLAGS += -L$(BUILDDIR) $(LTO_FLAGS)
@@ -134,6 +134,6 @@ distclean:
134134
find . -type f -name "*.a" -delete
135135

136136
updatever:
137-
sed -i "s#$(OLDVERSION)#$(VERSION)#g" $(wildcard .github/workflows/*.yml) CMakeLists.txt compile_flags.txt
137+
sed -i "s#$(OLDVERSION)#$(VERSION)#g" $(wildcard .github/workflows/*.yml scripts/*) CMakeLists.txt compile_flags.txt
138138

139139
.PHONY: $(TARGET) updatever distclean clean imgui fmt tpl toml getopt-port clip tray dist all

compile_flags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-Wextra
55
-Wpedantic
66
-std=c++20
7-
-DVERSION="0.3.0"
7+
-DVERSION="0.4.0-rc1"
88
-DDEBUG=1
99
-DWINDOWS_CMD=1
1010
-DENABLE_PORTALS=1

scripts/create_app_bundle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ main() {
9191
<key>CFBundleDisplayName</key>
9292
<string>oshot</string>
9393
<key>CFBundleVersion</key>
94-
<string>0.3.0</string>
94+
<string>0.4.0-rc1</string>
9595
<key>CFBundleShortVersionString</key>
96-
<string>0.3.0</string>
96+
<string>0.4.0-rc1</string>
9797
<key>CFBundlePackageType</key>
9898
<string>APPL</string>
9999
<key>CFBundleSignature</key>

0 commit comments

Comments
 (0)