Skip to content

Commit

Permalink
Bump version: 1.3.3 → 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
loostrum committed Feb 7, 2024
1 parent 97ed48e commit 9a0b626
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.3
current_version = 1.3.4

[bumpversion:file:CITATION.cff]
search = software version
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type: software
repository-code: "https://github.com/nlesc-recruit/PowerSensor3"
license: Apache-2.0
#software version
version: 1.3.3
version: 1.3.4
authors:
- given-names: Leon
family-names: Oostrum
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20.1)

project(PowerSensor3 VERSION 1.3.3)
project(PowerSensor3 VERSION 1.3.4)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-Wall")
Expand Down
6 changes: 3 additions & 3 deletions device/PowerSensor/PowerSensor.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#define TIMEOUT 2000 // ms

#ifdef STM32F401xC
#define VERSION "F401-1.3.3"
#define VERSION "F401-1.3.4"
#elif defined STM32F411xE
#define VERSION "F411-1.3.3"
#define VERSION "F411-1.3.4"
#elif defined STM32F407xx
#define VERSION "F407-1.3.3"
#define VERSION "F407-1.3.4"
#else
#error "Unsupported device"
#endif
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'PowerSensor 3'
copyright = '2023, Leon Oostrum, John Romein, Ben van Werkhoven, Quinten Twisk, Gijs Schoonderbeek, Steven van der Vlugt'
author = 'Leon Oostrum, John Romein, Ben van Werkhoven, Quinten Twisk, Gijs Schoonderbeek, Steven van der Vlugt'
release = '1.3.3'
release = '1.3.4'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion host/include/PowerSensor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static const unsigned MAX_SENSORS = 8;
static const unsigned MAX_PAIRS = MAX_SENSORS / 2;
static const float VOLTAGE = 3.3;
static const unsigned MAX_LEVEL = 1023;
static const std::string POWERSENSOR_VERSION = "1.3.3";
static const std::string POWERSENSOR_VERSION = "1.3.4";

/**
* @brief Struct containing values of all active sensors at a single point in time
Expand Down
2 changes: 1 addition & 1 deletion python/PyPowerSensor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace py = pybind11;


PYBIND11_MODULE(powersensor, m) {
m.attr("__version__") = "1.3.3";
m.attr("__version__") = "1.3.4";

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

Expand Down

0 comments on commit 9a0b626

Please sign in to comment.