Skip to content

Commit 109f104

Browse files
committed
Bump version to v0.3.0
1 parent ac80ec7 commit 109f104

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) 2018-2019 RedFantom
44
cmake_minimum_required(VERSION 3.9)
55
set(CMAKE_C_FLAGS "-std=c99" CACHE STRING "compiler flags")
6-
project(libmk VERSION 0.2.0 DESCRIPTION "MasterKeys RGB Library")
6+
project(libmk VERSION 0.3.0 DESCRIPTION "MasterKeys RGB Library")
77

88
# Dependencies
99
set(LIBUSB_INCLUDE_DIR /usr/include/libusb-1.0)
@@ -58,7 +58,7 @@ if (SKBUILD) # python setup.py
5858

5959
message("CMake found Python: " ${PYTHON_LIBRARIES})
6060

61-
project(masterkeys VERSION 0.2.0 DESCRIPTION "Wrapper around libmk")
61+
project(masterkeys VERSION 0.3.0 DESCRIPTION "Wrapper around libmk")
6262
add_library(masterkeys MODULE
6363
masterkeys/masterkeys.c
6464
libmk/libmk.c libmk/libmk.h)
@@ -68,7 +68,7 @@ if (SKBUILD) # python setup.py
6868
OUTPUT_NAME "masterkeys")
6969
install(TARGETS masterkeys LIBRARY DESTINATION masterkeys)
7070

71-
project(mk_notifications VERSION 0.2.0)
71+
project(mk_notifications VERSION 0.3.0)
7272
add_library(mk_notifications MODULE
7373
examples/notifications/mk_notifications.c
7474
libmk/libmk.c libmk/libmk.h)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = "0.2.0"
59+
version = "0.3.0"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "0.2.0"
61+
release = "0.3.0"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

docs/doxygen.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "libmk"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "0.2.0"
41+
PROJECT_NUMBER = "0.3.0"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run(self):
3434

3535
setup(
3636
name="masterkeys",
37-
version="0.2.0",
37+
version="0.3.0",
3838
packages=["masterkeys"],
3939
description="MasterKeys Control Library for Linux",
4040
author="RedFantom",

0 commit comments

Comments
 (0)