Skip to content

Commit b2ce029

Browse files
authored
Merge pull request #198 from nlesc-recruit/update-version
Bump version
2 parents 59a0b94 + 8ee51c3 commit b2ce029

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.5.0
2+
current_version = 1.6.1
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.5.0
13+
version: 1.6.1
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.5.0)
3+
project(PowerSensor3 VERSION 1.6.1)
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
@@ -9,11 +9,11 @@
99
#define TIMEOUT 2000 // ms
1010

1111
#ifdef STM32F401xC
12-
#define VERSION "F401-1.5.0"
12+
#define VERSION "F401-1.6.1"
1313
#elif defined STM32F411xE
14-
#define VERSION "F411-1.5.0"
14+
#define VERSION "F411-1.6.1"
1515
#elif defined STM32F407xx
16-
#define VERSION "F407-1.5.0"
16+
#define VERSION "F407-1.6.1"
1717
#else
1818
#error "Unsupported device"
1919
#endif

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
current_year = datetime.now().year
1212
author = 'Leon Oostrum, John Romein, Ben van Werkhoven, Quinten Twisk, Gijs Schoonderbeek, Steven van der Vlugt'
1313
copyright = f'{current_year}, {author}'
14-
release = '1.5.0'
14+
release = '1.6.1'
1515

1616
# -- General configuration ---------------------------------------------------
1717
# 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
@@ -18,7 +18,7 @@ static const unsigned MAX_SENSORS = 8;
1818
static const unsigned MAX_PAIRS = MAX_SENSORS / 2;
1919
static const float VOLTAGE = 3.3;
2020
static const unsigned MAX_LEVEL = 1023;
21-
static const std::string POWERSENSOR_VERSION = "1.5.0";
21+
static const std::string POWERSENSOR_VERSION = "1.6.1";
2222

2323
/**
2424
* @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
@@ -7,7 +7,7 @@ namespace py = pybind11;
77

88

99
PYBIND11_MODULE(powersensor, m) {
10-
m.attr("__version__") = "1.5.0";
10+
m.attr("__version__") = "1.6.1";
1111

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

0 commit comments

Comments
 (0)