Skip to content

Commit

Permalink
Bump version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RedFantom committed Dec 16, 2020
1 parent ac80ec7 commit 109f104
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (c) 2018-2019 RedFantom
cmake_minimum_required(VERSION 3.9)
set(CMAKE_C_FLAGS "-std=c99" CACHE STRING "compiler flags")
project(libmk VERSION 0.2.0 DESCRIPTION "MasterKeys RGB Library")
project(libmk VERSION 0.3.0 DESCRIPTION "MasterKeys RGB Library")

# Dependencies
set(LIBUSB_INCLUDE_DIR /usr/include/libusb-1.0)
Expand Down Expand Up @@ -58,7 +58,7 @@ if (SKBUILD) # python setup.py

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

project(masterkeys VERSION 0.2.0 DESCRIPTION "Wrapper around libmk")
project(masterkeys VERSION 0.3.0 DESCRIPTION "Wrapper around libmk")
add_library(masterkeys MODULE
masterkeys/masterkeys.c
libmk/libmk.c libmk/libmk.h)
Expand All @@ -68,7 +68,7 @@ if (SKBUILD) # python setup.py
OUTPUT_NAME "masterkeys")
install(TARGETS masterkeys LIBRARY DESTINATION masterkeys)

project(mk_notifications VERSION 0.2.0)
project(mk_notifications VERSION 0.3.0)
add_library(mk_notifications MODULE
examples/notifications/mk_notifications.c
libmk/libmk.c libmk/libmk.h)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = "0.2.0"
version = "0.3.0"
# The full version, including alpha/beta/rc tags.
release = "0.2.0"
release = "0.3.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "libmk"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "0.2.0"
PROJECT_NUMBER = "0.3.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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run(self):

setup(
name="masterkeys",
version="0.2.0",
version="0.3.0",
packages=["masterkeys"],
description="MasterKeys Control Library for Linux",
author="RedFantom",
Expand Down

0 comments on commit 109f104

Please sign in to comment.