Skip to content

Commit 390c59d

Browse files
[RPSDK-1365] 1.14.0 release update
Signed-off-by: Michal Princ <[email protected]>
1 parent 3d3f454 commit 390c59d

File tree

104 files changed

+174
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+174
-155
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.14.0]
11+
12+
### Added
13+
14+
- Added Cmake/Kconfig support.
15+
- Made java code jdk11 compliant, GitHub PR #432.
16+
- Added imxrt1186 support into mu transport layer.
17+
- erpcgen: Added assert for listType before usage, GitHub PR #406.
18+
19+
### Fixed
20+
21+
- eRPC: Sources reformatted.
22+
- erpc: Fixed typo in semaphore get (mutex -> semaphore), and write it can fail in case of timeout, GitHub PR #446.
23+
- erpc: Free the arbitrated client token from client manager, GitHub PR #444.
24+
- erpc: Fixed Makefile, install the erpc_simple_server header, GitHub PR #447.
25+
- erpc_python: Fixed possible AttributeError and OSError on calling TCPTransport.close(), GitHub PR #438.
26+
- Examples and tests consolidated.
27+
1028
## [1.13.0]
1129

1230
### Added
@@ -336,7 +354,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
336354
- Initial Release
337355

338356

339-
[unreleased]: https://github.com/EmbeddedRPC/erpc/compare/1.13.0...HEAD
357+
[unreleased]: https://github.com/EmbeddedRPC/erpc/compare/1.14.0...HEAD
358+
[1.14.0]: https://github.com/EmbeddedRPC/erpc/compare/1.13.0...1.14.0
340359
[1.13.0]: https://github.com/EmbeddedRPC/erpc/compare/1.12.0...1.13.0
341360
[1.12.0]: https://github.com/EmbeddedRPC/erpc/compare/1.11.0...1.12.0
342361
[1.11.0]: https://github.com/EmbeddedRPC/erpc/compare/1.10.0...1.11.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,4 +428,4 @@ Repository on Github contains two main branches: __main__ and __develop__. Code
428428
---
429429
Copyright 2014-2016 Freescale Semiconductor, Inc.
430430

431-
Copyright 2016-2024 NXP
431+
Copyright 2016-2025 NXP

SCR.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Release Name: eRPC
2-
Release Version: 1.13.0
2+
Release Version: 1.14.0
33
Package License: BSD-3-Clause
44

55
the_bus_pirate Name: The Bus Pirate

doxygen/Doxyfile.erpc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "eRPC API Reference"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Rev. 1.13.0"
41+
PROJECT_NUMBER = "Rev. 1.14.0"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

doxygen/Doxyfile.erpcgen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "eRPC Generator (erpcgen)"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Rev. 1.13.0"
41+
PROJECT_NUMBER = "Rev. 1.14.0"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

erpc_c/infra/erpc_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (c) 2016, Freescale Semiconductor, Inc.
3-
* Copyright 2016-2024 NXP
3+
* Copyright 2016-2025 NXP
44
* All rights reserved.
55
*
66
*
@@ -20,9 +20,9 @@
2020
////////////////////////////////////////////////////////////////////////////////
2121

2222
//! @brief String version of eRPC.
23-
#define ERPC_VERSION "1.13.0"
23+
#define ERPC_VERSION "1.14.0"
2424
//! @brief Integer version of eRPC.
25-
#define ERPC_VERSION_NUMBER 11300
25+
#define ERPC_VERSION_NUMBER 11400
2626

2727
/*! @} */
2828

erpc_java/deploy.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.embeddedrpc.erpc</groupId>
88
<artifactId>erpc</artifactId>
9-
<version>1.13.0</version>
9+
<version>1.14.0</version>
1010

1111
<name>eRPC</name>
1212
<description>eRPC (Embedded RPC) is an open source Remote Procedure Call (RPC) system for multichip embedded systems

erpc_java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.embeddedrpc.erpc</groupId>
88
<artifactId>erpc</artifactId>
9-
<version>1.13.0</version>
9+
<version>1.14.0</version>
1010

1111
<name>eRPC</name>
1212
<description>eRPC (Embedded RPC) is an open source Remote Procedure Call (RPC) system for multichip embedded systems

erpc_python/erpc/erpc_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env python
22

3-
# Copyright 2017-2024 NXP
3+
# Copyright 2017-2025 NXP
44
# All rights reserved.
55
#
66
# SPDX-License-Identifier: BSD-3-Clause
77

88
# Should be same as in erpc_version.h
9-
ERPC_VERSION = "1.13.0"
9+
ERPC_VERSION = "1.14.0"

examples/MCUXPRESSO_SDK/erpc_matrix_multiply/service/c_erpc_matrix_multiply_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
/*
10-
* Generated by erpcgen 1.13.0 on Thu Apr 18 09:37:38 2024.
10+
* Generated by erpcgen 1.14.0 on Wed May 28 10:34:55 2025.
1111
*
1212
* AUTOGENERATED - DO NOT EDIT
1313
*/

0 commit comments

Comments
 (0)