Skip to content

Commit f2fc37e

Browse files
committed
bump version to v0.10.1
1 parent 1e19aef commit f2fc37e

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.10.0.orig
17+
run: mkdir /tmp/customfetch-0.10.1.orig
1818

1919
- name: Install Packages
2020
run: |
@@ -27,17 +27,17 @@ jobs:
2727

2828
- name: Create deb
2929
run: |
30-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.0.orig
31-
cd /tmp/customfetch-0.10.0.orig/customfetch
30+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig
31+
cd /tmp/customfetch-0.10.1.orig/customfetch
3232
mkdir -p Debian/Debhelper/Buildsystem/
3333
wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm
3434
sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm
3535
dpkg-buildpackage -us -uc
3636
3737
- name: Install test customfetch
3838
run: |
39-
cd /tmp/customfetch-0.10.0.orig
40-
sudo dpkg -i customfetch_0.10.0-1_amd64.deb
39+
cd /tmp/customfetch-0.10.1.orig
40+
sudo dpkg -i customfetch_0.10.1-1_amd64.deb
4141
cufetch --wrap-lines=0
4242
4343
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.10.0.orig
85+
run: mkdir /tmp/customfetch-0.10.1.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.10.0.orig
101-
cd /tmp/customfetch-0.10.0.orig/customfetch
100+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig
101+
cd /tmp/customfetch-0.10.1.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.10.0-1_amd64.deb ../customfetch_amd64.deb
107+
mv ../customfetch_0.10.1-1_amd64.deb ../customfetch_amd64.deb
108108
109109
- name: Upload to github artifacts
110110
uses: actions/upload-artifact@v4
111111
with:
112112
name: customfetch-deb-pkg
113-
path: /tmp/customfetch-0.10.0.orig/customfetch_amd64.deb
113+
path: /tmp/customfetch-0.10.1.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.10.0.orig
122+
run: mkdir /tmp/customfetch-0.10.1.orig
123123

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

135135
- name: Create deb
136136
run: |
137-
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.0.orig
138-
cd /tmp/customfetch-0.10.0.orig/customfetch
137+
cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig
138+
cd /tmp/customfetch-0.10.1.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
sed -i "/^Build-Depends:/a Depends: libgtkmm-3.0-1v5,libgtk-3-0" debian/control
144144
dpkg-buildpackage -us -uc
145-
mv ../customfetch_0.10.0-1_amd64.deb ../customfetch-gui_amd64.deb
145+
mv ../customfetch_0.10.1-1_amd64.deb ../customfetch-gui_amd64.deb
146146
147147
- name: Upload to github artifacts
148148
uses: actions/upload-artifact@v4
149149
with:
150150
name: customfetch-gui-deb-pkg
151-
path: /tmp/customfetch-0.10.0.orig/customfetch-gui_amd64.deb
151+
path: /tmp/customfetch-0.10.1.orig/customfetch-gui_amd64.deb
152152

153153
release:
154154
name: Create GitHub Release

Makefile

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

5050
NAME = customfetch
5151
TARGET = cufetch
52-
OLDVERSION = 0.9.3
53-
VERSION = 0.10.0
52+
OLDVERSION = 0.10.0
53+
VERSION = 0.10.1
5454
BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
5555
SRC = $(wildcard src/*.cpp src/query/unix/*.cpp src/query/unix/utils/*.cpp)
5656
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.10.0"
6+
-DVERSION="0.10.1"
77
-DBRANCH="main"
88
-DGUI_MODE=1
99
-DUSE_DCONF=1

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
customfetch (0.10.1-1) unstable; urgency=medium
2+
3+
* bump version to 0.10.1-1 (bugfix)
4+
5+
-- toni500 <toni500minecraft@gmail.com> Sat, 2 Nov 22:31:43 +0100
6+
17
customfetch (0.10.0-1) unstable; urgency=medium
28

39
* bump version to 0.10.0-1

0 commit comments

Comments
 (0)