From ff6e21540cf717f4b7ac98e99425e465bde761e3 Mon Sep 17 00:00:00 2001 From: x-io Technologies Date: Thu, 5 Oct 2023 08:12:07 +0100 Subject: [PATCH] Increment version --- Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs | 6 +++--- Examples/Rust/Cargo.toml | 2 +- WindowsInstaller.iss | 2 +- setup.py | 2 +- version.py | 2 +- x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp | 2 +- x-IMU3-API/Rust/Cargo.toml | 2 +- x-IMU3-GUI/CMakeLists.txt | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs b/Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs index c5b96b05..357e34fb 100644 --- a/Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs +++ b/Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("1.3.0")] -[assembly: AssemblyVersion("1.3.0")] -[assembly: AssemblyFileVersion("1.3.0")] +// [assembly: AssemblyVersion("1.3.1")] +[assembly: AssemblyVersion("1.3.1")] +[assembly: AssemblyFileVersion("1.3.1")] diff --git a/Examples/Rust/Cargo.toml b/Examples/Rust/Cargo.toml index 6a98d9d3..c916930e 100644 --- a/Examples/Rust/Cargo.toml +++ b/Examples/Rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x-imu3-examples" -version = "1.3.0" +version = "1.3.1" authors = ["x-io Technologies Limited "] edition = "2018" diff --git a/WindowsInstaller.iss b/WindowsInstaller.iss index e4c0be13..202a59df 100644 --- a/WindowsInstaller.iss +++ b/WindowsInstaller.iss @@ -2,7 +2,7 @@ AppName=x-IMU3 GUI AppPublisher=x-io Technologies AppVerName=x-IMU3 GUI -AppVersion=1.3.0 +AppVersion=1.3.1 DefaultDirName={autopf64}\x-IMU3 GUI DefaultGroupName=x-IMU3 GUI DisableProgramGroupPage=yes diff --git a/setup.py b/setup.py index 54607120..b15d0f91 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ define_macros=[("_CRT_SECURE_NO_WARNINGS", "")]) setup(name="ximu3", - version="1.3.0", + version="1.3.1", description="x-IMU3 API", long_description="See [github](" + github_url + ") for documentation and examples.", long_description_content_type='text/markdown', diff --git a/version.py b/version.py index 75b7e5fd..b5b51597 100644 --- a/version.py +++ b/version.py @@ -1,7 +1,7 @@ import os import re -version = "1.3.0" +version = "1.3.1" def replace(file_path, string): diff --git a/x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp b/x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp index 75d7fb27..4381d848 100644 --- a/x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp +++ b/x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp @@ -13,7 +13,7 @@ using namespace System::Security::Permissions; [assembly:AssemblyTrademarkAttribute(L"")]; [assembly:AssemblyCultureAttribute(L"")]; -[assembly:AssemblyVersionAttribute("1.3.0")]; +[assembly:AssemblyVersionAttribute("1.3.1")]; [assembly:ComVisible(false)]; diff --git a/x-IMU3-API/Rust/Cargo.toml b/x-IMU3-API/Rust/Cargo.toml index 71e2bcdc..2f1d3e37 100644 --- a/x-IMU3-API/Rust/Cargo.toml +++ b/x-IMU3-API/Rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ximu3" -version = "1.3.0" +version = "1.3.1" authors = ["x-io Technologies Limited "] edition = "2018" description = "x-IMU3 API" diff --git a/x-IMU3-GUI/CMakeLists.txt b/x-IMU3-GUI/CMakeLists.txt index 67eb31b3..cf850b51 100644 --- a/x-IMU3-GUI/CMakeLists.txt +++ b/x-IMU3-GUI/CMakeLists.txt @@ -61,7 +61,7 @@ cmake_minimum_required(VERSION 3.15) # `project()` command. `project()` sets up some helpful variables that describe source/binary # directories, and the current project version. This is a standard CMake command. -project(X_IMU3_GUI VERSION 1.3.0) +project(X_IMU3_GUI VERSION 1.3.1) # If you've installed JUCE somehow (via a package manager, or directly using the CMake install # target), you'll need to tell this project that it depends on the installed copy of JUCE. If you've