Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare release 2.2.1 #197

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Significant changes per release

## 2.2.1

* Fix matrix 4x4 multiplication and add unit tests

## 2.2.0

* Added support for Clang 15
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.2.0.{build}
version: 2.2.1.{build}

environment:
PYTHON: "C:\\Python36-x64\\python.exe"
Expand Down
2 changes: 1 addition & 1 deletion includes/rtm/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#define RTM_VERSION_MAJOR 2
#define RTM_VERSION_MINOR 2
#define RTM_VERSION_PATCH 0
#define RTM_VERSION_PATCH 1

////////////////////////////////////////////////////////////////////////////////
// In order to allow multiple versions of this library to coexist side by side
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sonar.organization=nfrechette-github

sonar.projectKey=nfrechette_rtm
sonar.projectName=Realtime Math
sonar.projectVersion=2.2.0
sonar.projectVersion=2.2.1

sonar.sources=includes,tests/sources,tests/main_generic

Expand Down
Loading