diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 6a4bb49..f4859d0 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: create tmp directory - run: mkdir /tmp/customfetch-0.10.1.orig + run: mkdir /tmp/customfetch-0.10.2.orig - name: Install Packages run: | @@ -27,8 +27,8 @@ jobs: - name: Create deb run: | - cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig - cd /tmp/customfetch-0.10.1.orig/customfetch + cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig + cd /tmp/customfetch-0.10.2.orig/customfetch mkdir -p Debian/Debhelper/Buildsystem/ wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm @@ -36,8 +36,8 @@ jobs: - name: Install test customfetch run: | - cd /tmp/customfetch-0.10.1.orig - sudo dpkg -i customfetch_0.10.1-1_amd64.deb + cd /tmp/customfetch-0.10.2.orig + sudo dpkg -i customfetch_0.10.2-1_amd64.deb customfetch --wrap-lines=0 build_ubuntu-latest: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 68e9a72..2765f78 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: - uses: actions/checkout@v4 - name: create tmp directory - run: mkdir /tmp/customfetch-0.10.1.orig + run: mkdir /tmp/customfetch-0.10.2.orig - name: Install Packages run: | @@ -97,20 +97,20 @@ jobs: - name: Create deb run: | - cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig - cd /tmp/customfetch-0.10.1.orig/customfetch + cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig + cd /tmp/customfetch-0.10.2.orig/customfetch mkdir -p Debian/Debhelper/Buildsystem/ wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm sed -i "s#DEBUG=0#DEBUG=0 CXX=x86_64-linux-gnu-g++-10#g" debian/rules dpkg-buildpackage -us -uc - mv ../customfetch_0.10.1-1_amd64.deb ../customfetch_amd64.deb + mv ../customfetch_0.10.2-1_amd64.deb ../customfetch_amd64.deb - name: Upload to github artifacts uses: actions/upload-artifact@v4 with: name: customfetch-deb-pkg - path: /tmp/customfetch-0.10.1.orig/customfetch_amd64.deb + path: /tmp/customfetch-0.10.2.orig/customfetch_amd64.deb build-deb-gui: runs-on: ubuntu-20.04 @@ -119,7 +119,7 @@ jobs: - uses: actions/checkout@v4 - name: create tmp directory - run: mkdir /tmp/customfetch-0.10.1.orig + run: mkdir /tmp/customfetch-0.10.2.orig - name: Install Packages run: | @@ -134,21 +134,21 @@ jobs: - name: Create deb run: | - cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.1.orig - cd /tmp/customfetch-0.10.1.orig/customfetch + cp -r $GITHUB_WORKSPACE /tmp/customfetch-0.10.2.orig + cd /tmp/customfetch-0.10.2.orig/customfetch mkdir -p Debian/Debhelper/Buildsystem/ wget https://github.com/Debian/debhelper/raw/master/lib/Debian/Debhelper/Buildsystem/makefile.pm -O Debian/Debhelper/Buildsystem/make.pm sed -i "s#package Debian::Debhelper::Buildsystem::makefile#package Debian::Debhelper::Buildsystem::make#g" Debian/Debhelper/Buildsystem/make.pm sed -i "s#GUI_MODE=0#GUI_MODE=1 CXX=x86_64-linux-gnu-g++-10#g" debian/rules sed -i "/^Build-Depends:/a Depends: libgtkmm-3.0-1v5,libgtk-3-0" debian/control dpkg-buildpackage -us -uc - mv ../customfetch_0.10.1-1_amd64.deb ../customfetch-gui_amd64.deb + mv ../customfetch_0.10.2-1_amd64.deb ../customfetch-gui_amd64.deb - name: Upload to github artifacts uses: actions/upload-artifact@v4 with: name: customfetch-gui-deb-pkg - path: /tmp/customfetch-0.10.1.orig/customfetch-gui_amd64.deb + path: /tmp/customfetch-0.10.2.orig/customfetch-gui_amd64.deb release: name: Create GitHub Release diff --git a/Makefile b/Makefile index 23f0eae..880143f 100644 --- a/Makefile +++ b/Makefile @@ -49,8 +49,8 @@ endif NAME = customfetch TARGET = $(NAME) -OLDVERSION = 0.10.0 -VERSION = 0.10.1 +OLDVERSION = 0.10.1 +VERSION = 0.10.2 BRANCH = $(shell git rev-parse --abbrev-ref HEAD) SRC = $(wildcard src/*.cpp src/query/unix/*.cpp src/query/unix/utils/*.cpp) OBJ = $(SRC:.cpp=.o) diff --git a/compile_flags.txt b/compile_flags.txt index 49b9bab..4da4b88 100644 --- a/compile_flags.txt +++ b/compile_flags.txt @@ -3,7 +3,7 @@ -Wextra -Wpedantic -std=c++20 --DVERSION="0.10.1" +-DVERSION="0.10.2" -DBRANCH="main" -DGUI_MODE=1 -DUSE_DCONF=1 diff --git a/debian/changelog b/debian/changelog index 30e95dd..dfada57 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +customfetch (0.10.2-1) unstable; urgency=medium + + * bump version to 0.10.2-1 (bugfix) + + -- toni500 Wed, 6 Nov 16:43:21 +0100 + customfetch (0.10.1-1) unstable; urgency=medium * bump version to 0.10.1-1 (bugfix)