Skip to content

Commit f08db98

Browse files
committed
Bump version to 2.0
We can also create an appimage for the release with: # Needed to link against an old libc nix-shell -p glibc -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/136a26be29a9daa04e5f15ee7694e9e92e5a028c.tar.gz # Create the appimage QML_SOURCES_PATHS="$PWD/src/qml" QMAKE=/usr/bin/qmake6 ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage ref: https://github.com/linuxdeploy/linuxdeploy ref: https://docs.appimage.org/packaging-guide/from-source/native-binaries.html#using-cmake-and-make-install
1 parent 5250fb5 commit f08db98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.21)
22
cmake_policy(SET CMP0048 NEW)
3-
project(blobdrop VERSION 1.0 DESCRIPTION "Drag and drop files directly out of the terminal")
3+
project(blobdrop VERSION 2.0 DESCRIPTION "Drag and drop files directly out of the terminal")
44

55
set(CMAKE_CXX_STANDARD 20)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
blobdrop = pkgs.gcc13Stdenv.mkDerivation {
1616
pname = "blobdrop";
17-
version = "1.0";
17+
version = "2.0";
1818

1919
src = ./.;
2020

0 commit comments

Comments
 (0)