Skip to content

Commit e95d603

Browse files
Fábio Monteirofcmonteiro
authored andcommitted
Release 3.5.0
1 parent 73aeb75 commit e95d603

File tree

5 files changed

+30
-9
lines changed

5 files changed

+30
-9
lines changed

Android.bp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ cc_library_shared {
8080

8181
cflags: [
8282
"-DWITHOUT_SYSTEMD",
83-
"-DVSOMEIP_VERSION=\"3.4.10\"",
84-
"-DVSOMEIP_COMPAT_VERSION=\"3.4.10\"",
83+
"-DVSOMEIP_VERSION=\"3.5.0\"",
84+
"-DVSOMEIP_COMPAT_VERSION=\"3.5.0\"",
8585
"-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\"",
8686
"-DUSE_DLT",
8787
],

Android.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ LOCAL_CFLAGS := \
100100
-frtti \
101101
-fexceptions \
102102
-DWITHOUT_SYSTEMD \
103-
-DVSOMEIP_VERSION=\"3.4.10\" \
103+
-DVSOMEIP_VERSION=\"3.5.0\" \
104104
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
105105
-Wno-unused-parameter \
106106
-Wno-non-virtual-dtor \
@@ -147,7 +147,7 @@ LOCAL_CFLAGS := \
147147
-frtti \
148148
-fexceptions \
149149
-DWITHOUT_SYSTEMD \
150-
-DVSOMEIP_VERSION=\"3.4.10\" \
150+
-DVSOMEIP_VERSION=\"3.5.0\" \
151151
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
152152
-Wno-unused-parameter \
153153
-Wno-non-virtual-dtor \
@@ -194,8 +194,8 @@ LOCAL_CFLAGS := \
194194
-frtti \
195195
-fexceptions \
196196
-DWITHOUT_SYSTEMD \
197-
-DVSOMEIP_VERSION=\"3.4.10\" \
198-
-DVSOMEIP_COMPAT_VERSION=\"3.4.10\" \
197+
-DVSOMEIP_VERSION=\"3.5.0\" \
198+
-DVSOMEIP_COMPAT_VERSION=\"3.5.0\" \
199199
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
200200
-Wno-unused-parameter \
201201
-Wno-non-virtual-dtor \

CHANGES

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Changes
22
=======
33

4+
v3.5.0
5+
- Load Policies Lazy Load
6+
- Test - Processing SD messages with unknown type option
7+
- ensure endpoints before deletion
8+
- Improve "end of file" error handling
9+
- Enable debouncing of events & selective events
10+
- Revert "Test - Processing SD messages with unknown type"
11+
- Logs added to points of failure on registration process
12+
- One *.json to ignorem all
13+
- Someip-tp remote address rework
14+
- Fix crash in multicast_receive receive_cb
15+
- Generate network_test configs directly to build
16+
- Fix deadlock if binding of TCP client endpoint fails
17+
- Added missing includes of iomanip to support compilation on Mint
18+
- Cache not yet registered events
19+
- Return true to make sure endpoints are deleted
20+
- Byteorder implementation
21+
- Reorder of prepare_stop method
22+
- Allows applications in the same process using different security configurations
23+
- Fix to not ignore stop offers when sd acceptance is not required
24+
425
v3.4.10
526
- Fix QNX build
627
- Fix missing Stop Offer

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ set (VSOMEIP_NAME vsomeip3)
1010
set (VSOMEIP_COMPAT_NAME vsomeip)
1111

1212
set (VSOMEIP_MAJOR_VERSION 3)
13-
set (VSOMEIP_MINOR_VERSION 4)
14-
set (VSOMEIP_PATCH_VERSION 10)
13+
set (VSOMEIP_MINOR_VERSION 5)
14+
set (VSOMEIP_PATCH_VERSION 0)
1515
set (VSOMEIP_HOTFIX_VERSION 0)
1616

1717
set (VSOMEIP_VERSION ${VSOMEIP_MAJOR_VERSION}.${VSOMEIP_MINOR_VERSION}.${VSOMEIP_PATCH_VERSION})

libvsomeip.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- name: libvsomeip
2-
version: 3.4.10
2+
version: 3.5.0
33
vendor: Lynx Team
44
license:
55
concluded: CLOSED and MPLv2

0 commit comments

Comments
 (0)