Skip to content

Commit 5c5a90b

Browse files
committed
Bump version: 1.3.2 → 1.3.3
1 parent ff56036 commit 5c5a90b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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.3.2
2+
current_version = 1.3.3
33

44
[bumpversion:file:CITATION.cff]
55
search = software version

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type: software
1010
repository-code: "https://github.com/nlesc-recruit/PowerSensor3"
1111
license: Apache-2.0
1212
#software version
13-
version: 1.3.2
13+
version: 1.3.3
1414
authors:
1515
- given-names: Leon
1616
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.3.2)
3+
project(PowerSensor3 VERSION 1.3.3)
44

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

device/PowerSensor/PowerSensor.ino

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

1010
#ifdef STM32F401xC
11-
#define VERSION "F401-1.3.2"
11+
#define VERSION "F401-1.3.3"
1212
#elif defined STM32F411xE
13-
#define VERSION "F411-1.3.2"
13+
#define VERSION "F411-1.3.3"
1414
#elif defined STM32F407xx
15-
#define VERSION "F407-1.3.2"
15+
#define VERSION "F407-1.3.3"
1616
#else
1717
#error "Unsupported device"
1818
#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.3.2'
12+
release = '1.3.3'
1313

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

host/include/PowerSensor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ static const unsigned MAX_SENSORS = 8;
1717
static const unsigned MAX_PAIRS = MAX_SENSORS / 2;
1818
static const float VOLTAGE = 3.3;
1919
static const unsigned MAX_LEVEL = 1023;
20-
static const std::string POWERSENSOR_VERSION = "1.3.2";
20+
static const std::string POWERSENSOR_VERSION = "1.3.3";
2121

2222
/**
2323
* @brief Struct containing values of all active sensors at a single point in time

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.3.2";
9+
m.attr("__version__") = "1.3.3";
1010

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

0 commit comments

Comments
 (0)