Skip to content

Commit 3f6fd84

Browse files
[version] bump version number to 0.2.0 (#231)
1 parent b910aa8 commit 3f6fd84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+58
-47
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type: software
99
license: Unlicense
1010
repository-code: "https://github.com/FrancoisCarouge/Kalman"
1111
url: "https://francoiscarouge.github.io/Kalman/"
12-
version: 0.1.0
12+
version: 0.2.0
1313
keywords:
1414
- c++
1515
- kalman

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense
@@ -43,7 +43,7 @@ project(
4343
DESCRIPTION "Kalman Filter for C++"
4444
HOMEPAGE_URL "https://github.com/FrancoisCarouge/Kalman"
4545
LANGUAGES "CXX"
46-
VERSION "0.1.0")
46+
VERSION "0.2.0")
4747

4848
set(CPACK_PACKAGE_CHECKSUM "SHA512")
4949
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md")

INSTALL.md

+12-1

benchmark/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/baseline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/eigen_predict_x1x.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/eigen_update_xx0.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/include/benchmark.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/predict_1x1x0.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/predict_1x1x1.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/script/baseline.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/eigen_predict.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/eigen_update.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/float.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/float_1x1x0.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/float_1x1x1.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/plot.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/predict_1x1x0.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/predict_1x1x1.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/update_1x1x0.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/script/update_1x1x1.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

benchmark/update_1x1x0.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

benchmark/update_1x1x1.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

documentation/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = Kalman
8-
PROJECT_NUMBER = 0.1.0
8+
PROJECT_NUMBER = 0.2.0
99
PROJECT_BRIEF = "Kalman Filter for C++"
1010
PROJECT_LOGO =
1111
OUTPUT_DIRECTORY = .

documentation/documentation.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77

88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111

1212
SPDX-License-Identifier: Unlicense

include/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

include/fcarouge/internal/format.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

include/fcarouge/internal/kalman.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

include/fcarouge/internal/utility.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

include/fcarouge/kalman.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

sample/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

sample/script/kf_1x1x0_building_height.plt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

sample/script/plot.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
88

99
# Kalman Filter for C++
10-
# Version 0.1.0
10+
# Version 0.2.0
1111
# https://github.com/FrancoisCarouge/Kalman
1212

1313
# SPDX-License-Identifier: Unlicense

source/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

source/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

support/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

support/format

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77

88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111

1212
SPDX-License-Identifier: Unlicense

test/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

test/eigen_f.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

test/eigen_h.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|
77
88
Kalman Filter for C++
9-
Version 0.1.0
9+
Version 0.2.0
1010
https://github.com/FrancoisCarouge/Kalman
1111
1212
SPDX-License-Identifier: Unlicense

0 commit comments

Comments
 (0)