Skip to content

Commit 658b79f

Browse files
committed
bump version to v0.9.2
I hope I don't have to do any more changes for then re-releasing again
1 parent c2426d9 commit 658b79f

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed

.github/workflows/makefile.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- name: create tmp directory
17-
run: mkdir /tmp/customfetch-0.9.0.orig
17+
run: mkdir /tmp/customfetch-0.9.2.orig
1818

1919
- name: Install Packages
2020
run: sudo apt-get update && sudo apt-get install libwayland-dev binutils lintian debhelper devscripts debmake autoconf automake autotools-dev dh-make fakeroot xutils pbuilder -y
@@ -24,17 +24,17 @@ jobs:
2424

2525
- name: Create deb
2626
run: |
27-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.0.orig
28-
cd /tmp/customfetch-0.9.0.orig/customfetch
27+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.2.orig
28+
cd /tmp/customfetch-0.9.2.orig/customfetch
2929
mkdir -p Debian/Debhelper/Buildsystem/
3030
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
3131
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
3232
dpkg-buildpackage -us -uc
3333
3434
- name: Install test cufetch
3535
run: |
36-
cd /tmp/customfetch-0.9.0.orig
37-
sudo dpkg -i customfetch_0.9.0-1_amd64.deb
36+
cd /tmp/customfetch-0.9.2.orig
37+
sudo dpkg -i customfetch_0.9.2-1_amd64.deb
3838
cufetch
3939
4040
build_ubuntu-latest:

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/checkout@v4
8383

8484
- name: create tmp directory
85-
run: mkdir /tmp/customfetch-0.9.0.orig
85+
run: mkdir /tmp/customfetch-0.9.2.orig
8686

8787
- name: Install Packages
8888
run: |
@@ -97,20 +97,20 @@ jobs:
9797

9898
- name: Create deb
9999
run: |
100-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.0.orig
101-
cd /tmp/customfetch-0.9.0.orig/customfetch
100+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.2.orig
101+
cd /tmp/customfetch-0.9.2.orig/customfetch
102102
mkdir -p Debian/Debhelper/Buildsystem/
103103
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
104104
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
105105
sed -i "s#DEBUG=0#DEBUG=0 CXX=x86_64-linux-gnu-g++-10#g" debian/rules
106106
dpkg-buildpackage -us -uc
107-
mv ../customfetch_0.9.0-1_amd64.deb ../customfetch_amd64.deb
107+
mv ../customfetch_0.9.2-1_amd64.deb ../customfetch_amd64.deb
108108
109109
- name: Upload to github artifacts
110110
uses: actions/upload-artifact@v3
111111
with:
112112
name: customfetch-deb-pkg
113-
path: /tmp/customfetch-0.9.0.orig/customfetch_amd64.deb
113+
path: /tmp/customfetch-0.9.2.orig/customfetch_amd64.deb
114114

115115
build-deb-gui:
116116
runs-on: ubuntu-20.04
@@ -119,7 +119,7 @@ jobs:
119119
- uses: actions/checkout@v4
120120

121121
- name: create tmp directory
122-
run: mkdir /tmp/customfetch-0.9.0.orig
122+
run: mkdir /tmp/customfetch-0.9.2.orig
123123

124124
- name: Install Packages
125125
run: |
@@ -134,20 +134,20 @@ jobs:
134134

135135
- name: Create deb
136136
run: |
137-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.0.orig
138-
cd /tmp/customfetch-0.9.0.orig/customfetch
137+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.9.2.orig
138+
cd /tmp/customfetch-0.9.2.orig/customfetch
139139
mkdir -p Debian/Debhelper/Buildsystem/
140140
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
141141
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
142142
sed -i "s#GUI_MODE=0#GUI_MODE=1 CXX=x86_64-linux-gnu-g++-10#g" debian/rules
143143
dpkg-buildpackage -us -uc
144-
mv ../customfetch_0.9.0-1_amd64.deb ../customfetch-gui_amd64.deb
144+
mv ../customfetch_0.9.2-1_amd64.deb ../customfetch-gui_amd64.deb
145145
146146
- name: Upload to github artifacts
147147
uses: actions/upload-artifact@v3
148148
with:
149149
name: customfetch-gui-deb-pkg
150-
path: /tmp/customfetch-0.9.0.orig/customfetch-gui_amd64.deb
150+
path: /tmp/customfetch-0.9.2.orig/customfetch-gui_amd64.deb
151151

152152
release:
153153
name: Create GitHub Release

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ endif
3939

4040
NAME = customfetch
4141
TARGET = cufetch
42-
OLDVERSION = 0.8.8
43-
VERSION = 0.9.0
42+
OLDVERSION = 0.9.0
43+
VERSION = 0.9.2
4444
BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
4545
SRC = $(wildcard src/*.cpp src/query/unix/*.cpp src/query/unix/utils/*.cpp)
4646
OBJ = $(SRC:.cpp=.o)

compile_flags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-Wextra
44
-Wpedantic
55
-std=c++20
6-
-DVERSION="0.9.0"
6+
-DVERSION="0.9.2"
77
-DBRANCH="main"
88
-DGUI_MODE=1
99
-DDEBUG=1

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
customfetch (0.9.2-1) unstable; urgency=medium
2+
3+
* bump version to 0.9.2-1
4+
5+
-- toni500 <toni500minecraft@gmail.com> Wed, 11 Sep 12:46:54 -0500
6+
17
customfetch (0.9.0-1) unstable; urgency=medium
28

39
* bump version to 0.9.0-1

0 commit comments

Comments
 (0)