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

Increment version #307

Merged
merged 1 commit into from
Oct 5, 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
6 changes: 3 additions & 3 deletions Examples/CSharp/x-IMU3-Examples/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion Examples/Rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "x-imu3-examples"
version = "1.3.0"
version = "1.3.1"
authors = ["x-io Technologies Limited <info@x-io.co.uk>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion WindowsInstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import re

version = "1.3.0"
version = "1.3.1"


def replace(file_path, string):
Expand Down
2 changes: 1 addition & 1 deletion x-IMU3-API/CSharp/x-IMU3/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)];

Expand Down
2 changes: 1 addition & 1 deletion x-IMU3-API/Rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ximu3"
version = "1.3.0"
version = "1.3.1"
authors = ["x-io Technologies Limited <info@x-io.co.uk>"]
edition = "2018"
description = "x-IMU3 API"
Expand Down
2 changes: 1 addition & 1 deletion x-IMU3-GUI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down