Skip to content

Commit 2e8b4cd

Browse files
committed
Bump minor version
1 parent 61e95a1 commit 2e8b4cd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.1.0
33

44
[bumpversion:file:CITATION.cff]
55
search = version: {current_version}

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ message: >-
99
type: software
1010
repository-code: "https://github.com/nlesc-recruit/PowerSensor3"
1111
license: Apache-2.0
12-
version: 1.0.0
12+
version: 1.1.0
1313
authors:
1414
- given-names: Leon
1515
family-names: Oostrum

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.20.1)
22

3-
project(PowerSensor3 VERSION 1.0.0)
3+
project(PowerSensor3 VERSION 1.1.0)
44

55
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_CXX_FLAGS "-Wall")

device/PowerSensor/PowerSensor.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#define PAIRS 4
99

1010
#ifdef STM32F401xC
11-
#define VERSION "F401-1.0.0"
11+
#define VERSION "F401-1.1.0"
1212
#elif defined STM32F407xx
13-
#define VERSION "F407-1.0.0"
13+
#define VERSION "F407-1.1.0"
1414
#else
1515
#error "Unsupported device"
1616
#endif

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'PowerSensor 3'
1010
copyright = '2023, Leon Oostrum, John Romein, Ben van Werkhoven, Quinten Twisk, Gijs Schoonderbeek, Steven van der Vlugt'
1111
author = 'Leon Oostrum, John Romein, Ben van Werkhoven, Quinten Twisk, Gijs Schoonderbeek, Steven van der Vlugt'
12-
release = '1.0.0'
12+
release = '1.1.0'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

python/PyPowerSensor.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace py = pybind11;
66

77

88
PYBIND11_MODULE(powersensor, m) {
9-
m.attr("__version__") = "1.0.0";
9+
m.attr("__version__") = "1.1.0";
1010

1111
m.attr("MAX_PAIRS") = py::int_(PowerSensor3::MAX_PAIRS);
1212

0 commit comments

Comments
 (0)