Skip to content

Commit

Permalink
tree: Prepare release v0.8
Browse files Browse the repository at this point in the history
Sorry, took me some time to make this release because I worked on other stuff as well. Anyways, here it is!
  • Loading branch information
tseli0s committed Jan 4, 2024
1 parent a683713 commit 8dcc067
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.7.0 DESCRIPTION "A simple and minimal dialog library, with cross-platform support")
project(libnvdialog LANGUAGES C VERSION 0.8.0 DESCRIPTION "A simple and minimal dialog library, with cross-platform support")

option(WIN32_TARGET "Build the library for Windows usage. Requires i686-w64-mingw32-gcc-win32." OFF)
option(COCOA_TARGET "Build the library for MacOS/Cocoa usage." ON)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0
PROJECT_NUMBER = 0.8.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
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pkgname=nvdialog
_pkgname=nvdialog
pkgver=0.7.0
pkgver=0.8.0
pkgrel=1
epoch=
pkgdesc="Cross-platform dialog box library written in C, using the host's standard backend."
Expand Down
2 changes: 1 addition & 1 deletion include/nvdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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 7
#define NVDIALOG_VERSION_MINOR 8
/** Patch version of NvDialog at compile time. */
#define NVDIALOG_VERSION_PATCH 0

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

NvdVersion nvd_get_version() {
return ((NvdVersion) {vermajor, verminor, verpatch, "0.7.0"});
return ((NvdVersion) {vermajor, verminor, verpatch, "0.8.0"});
}

0 comments on commit 8dcc067

Please sign in to comment.