Skip to content

Commit

Permalink
v0.5.0 Released.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseli0s committed Dec 2, 2022
1 parent 4fc5942 commit 56fe44c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is part of libnvdialog and is released under the MIT license.

cmake_minimum_required(VERSION 3.18)
project(libnvdialog LANGUAGES C VERSION 0.3.0 DESCRIPTION "A simple and minimal dialog library, with cross-platform support")
project(libnvdialog LANGUAGES C VERSION 0.5.0 DESCRIPTION "A simple and minimal dialog library, with cross-platform support")

option(WIN32_TARGET "Build the library for Windows usage. Requires x86_64-w64-mingw32." OFF)
option(NVD_USE_GTK4 "Instead of using the old Gtk3 backend, use Gtk4 and libadwaita for Linux. Experimental." ON) # Default since 0.2.0-plus-some-commits.
Expand Down
2 changes: 1 addition & 1 deletion include/nvdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern "C" {
#endif /* __cplusplus */

#define NVDIALOG_VERSION_MAJOR 0
#define NVDIALOG_VERSION_MINOR 3
#define NVDIALOG_VERSION_MINOR 5
#define NVDIALOG_VERSION_PATCH 0

/** @brief A macro to set the version at compile time. */
Expand Down
4 changes: 2 additions & 2 deletions src/nvdialog_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

/* The versions of nvdialog are held as statics in the global scope. */
static short __vermajor = 0;
static short __verminor = 3;
static short __verminor = 5;
static short __verpatch = 0;

NvdVersion nvd_get_version() {
NvdVersion version = {__vermajor, __verminor, __verpatch, "0.3.0"};
NvdVersion version = {__vermajor, __verminor, __verpatch, "0.5.0"};
return version;
}

0 comments on commit 56fe44c

Please sign in to comment.