Skip to content

Commit f9a04a0

Browse files
committed
Tag v0.2.1
1 parent 359e367 commit f9a04a0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmake/Version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
set(TINYOPT_VERSION_MAJOR 0)
3-
set(TINYOPT_VERSION_MINOR 1)
4-
set(TINYOPT_VERSION_PATCH 0)
3+
set(TINYOPT_VERSION_MINOR 2)
4+
set(TINYOPT_VERSION_PATCH 1)
55

66
math(EXPR TINYOPT_VERSION "10000 * ${TINYOPT_VERSION_MAJOR} + 100 * ${TINYOPT_VERSION_MINOR} + ${TINYOPT_VERSION_PATCH}")
77
set(TINYOPT_VERSION_STRING "${TINYOPT_VERSION_MAJOR}.${TINYOPT_VERSION_MINOR}.${TINYOPT_VERSION_PATCH}")

docs/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'tinyopt'
1010
copyright = '2025, Julien Michot'
1111
author = 'Julien Michot'
12-
release = '0.1.0'
12+
release = '0.2.1'
1313

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

include/tinyopt/math.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using Matrix = Eigen::Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols>;
3636
template <typename Scalar, int Rows = Dynamic>
3737
using Vector = Matrix<Scalar, Rows, 1>;
3838

39-
template <typename Scalar, int Options = 0, typename StorageIndex = int>
39+
template <typename Scalar = double, int Options = 0, typename StorageIndex = int>
4040
using SparseMatrix = Eigen::SparseMatrix<Scalar, Options, StorageIndex>;
4141

4242
template <typename T>

0 commit comments

Comments
 (0)