Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
tseli0s committed Mar 4, 2023
1 parent 6a7f57e commit a5daa93
Showing 4 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
@@ -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.5.0 DESCRIPTION "A simple and minimal dialog library, with cross-platform support")
project(libnvdialog LANGUAGES C VERSION 0.6.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(COCOA_TARGET "Build the library for MacOS/Cocoa usage." ON)
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = NvDialog
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.5.0
PROJECT_NUMBER = 0.6.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
2 changes: 1 addition & 1 deletion include/nvdialog.h
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ extern "C" {
/** Major version of NvDialog at compile time. */
#define NVDIALOG_VERSION_MAJOR 0
/** Minor version of NvDialog at compile time. */
#define NVDIALOG_VERSION_MINOR 5
#define NVDIALOG_VERSION_MINOR 6
/** Patch version of NvDialog at compile time. */
#define NVDIALOG_VERSION_PATCH 0

2 changes: 1 addition & 1 deletion src/nvdialog_version.c
Original file line number Diff line number Diff line change
@@ -30,5 +30,5 @@ const static short verminor = NVDIALOG_VERSION_MINOR;
const static short verpatch = NVDIALOG_VERSION_PATCH;

NvdVersion nvd_get_version() {
return ((NvdVersion) {vermajor, verminor, verpatch, "0.5.0"});
return ((NvdVersion) {vermajor, verminor, verpatch, "0.6.0"});
}

0 comments on commit a5daa93

Please sign in to comment.