Skip to content

Commit 11c6bf4

Browse files
committed
Update version info to 1.1.0 (2025-10-10)
1 parent 4129b99 commit 11c6bf4

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
cmake_minimum_required(VERSION 3.22)
16-
project(openarm_can VERSION 1.1.0)
16+
project(openarm_can VERSION 1.0.2)
1717

1818
# Set C++ standard
1919
set(CMAKE_CXX_STANDARD 17)

packages/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
openarm-can (1.0.2-1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- Daijiro Fukuda <fukuda@clear-code.com> Fri, 10 Oct 2025 07:49:49 -0000
6+
17
openarm-can (1.1.0-1) unstable; urgency=low
28

39
* New upstream release.

packages/fedora/openarm-can.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
Name: openarm-can
16-
Version: 1.1.0
16+
Version: 1.0.2
1717
Release: %{autorelease}
1818
Summary: OpenArm CAN control library
1919

python/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project(
1616
'openarm_can',
1717
'cpp',
18-
version: '1.1.0',
18+
version: '1.0.2',
1919
default_options: ['cpp_std=c++17'],
2020
)
2121

python/openarm/can/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# Import all C++ bindings directly - 1:1 mapping with C++ API
2323
from .core import *
2424

25-
__version__ = "1.1.0"
25+
__version__ = "1.0.2"
2626
__author__ = "Enactic, Inc."
2727

2828
# Direct export of C++ classes - no wrappers

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ maintainers = [{name = "Enactic, Inc."}]
2424
name = "openarm_can"
2525
readme = "README.md"
2626
requires-python = ">= 3.10"
27-
version = "1.1.0"
27+
version = "1.0.2"
2828

2929
[project.urls]
3030
# TODO: changelog = "https://github.com/reazon-research/openarm_socketcan/releases"

0 commit comments

Comments
 (0)