Skip to content

Commit 325c44b

Browse files
Bump version to 2.1.4 (#549)
* Refs #23085. Bump version to 2.1.4 Signed-off-by: Miguel Company <miguelcompany@eprosima.com> * Refs #23085. Ensure ctx is passed to `fileHeader()`. Signed-off-by: Miguel Company <miguelcompany@eprosima.com> * Refs #23085. Fix product name. Signed-off-by: Miguel Company <miguelcompany@eprosima.com> --------- Signed-off-by: Miguel Company <miguelcompany@eprosima.com>
1 parent ab24fab commit 325c44b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'java'
1717
apply plugin: 'eclipse' // Eclipse integration
1818

1919
description = """"""
20-
def version_str = "2.1.3"
20+
def version_str = "2.1.4"
2121

2222
import org.apache.tools.ant.taskdefs.condition.Os;
2323
import org.gradle.api.tasks.options.Option;

src/main/java/com/eprosima/fastcdr/idl/templates/TypeObjectHeader.stg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
group TypeObjectHeader;
1616

1717
main(ctx, definitions) ::= <<
18-
$fileHeader(file=[ctx.filename, "TypeObject.h"], description=["This header file contains the declaration of the described types in the IDL file."])$
18+
$fileHeader(ctx=ctx, file=[ctx.filename, "TypeObject.h"], description=["This header file contains the declaration of the described types in the IDL file."])$
1919

2020
#ifndef _FAST_DDS_GENERATED_$ctx.headerGuardName$_TYPE_OBJECT_H_
2121
#define _FAST_DDS_GENERATED_$ctx.headerGuardName$_TYPE_OBJECT_H_

src/main/java/com/eprosima/fastcdr/idl/templates/TypeObjectSource.stg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
group TypeObjectSource;
1616

1717
main(ctx, definitions) ::= <<
18-
$fileHeader(file=[ctx.filename, "TypeObject.cpp"], description=["This source file contains the definition of the described types in the IDL file."])$
18+
$fileHeader(ctx=ctx, file=[ctx.filename, "TypeObject.cpp"], description=["This source file contains the definition of the described types in the IDL file."])$
1919

2020
#ifdef _WIN32
2121
// Remove linker warning LNK4221 on Visual Studio

src/main/java/com/eprosima/fastcdr/idl/templates/TypesHeader.stg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
group TypesHeader;
1616

1717
main(ctx, definitions) ::= <<
18-
$fileHeader(file=[ctx.filename, ".h"], description=["This header file contains the declaration of the described types in the IDL file."])$
18+
$fileHeader(ctx=ctx, file=[ctx.filename, ".h"], description=["This header file contains the declaration of the described types in the IDL file."])$
1919

2020
#ifndef _FAST_DDS_GENERATED_$ctx.headerGuardName$_H_
2121
#define _FAST_DDS_GENERATED_$ctx.headerGuardName$_H_

src/main/java/com/eprosima/fastcdr/idl/templates/TypesSource.stg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
group TypesSource;
1616

1717
main(ctx, definitions) ::= <<
18-
$fileHeader(file=[ctx.filename, ".cpp"], description=["This source file contains the definition of the described types in the IDL file."])$
18+
$fileHeader(ctx=ctx, file=[ctx.filename, ".cpp"], description=["This source file contains the definition of the described types in the IDL file."])$
1919

2020
#ifdef _WIN32
2121
// Remove linker warning LNK4221 on Visual Studio

src/main/java/com/eprosima/fastcdr/idl/templates/TypesSwigInterface.stg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
group TypesSwigInterface;
1616

1717
main(ctx, definitions) ::= <<
18-
$fileHeader(file=[ctx.filename, ".i"], description=["This header file contains the SWIG interface of the described types in the IDL file."])$
18+
$fileHeader(ctx=ctx, file=[ctx.filename, ".i"], description=["This header file contains the SWIG interface of the described types in the IDL file."])$
1919

2020
%module $ctx.filename$
2121

src/main/java/com/eprosima/fastdds/idl/grammar/Context.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public boolean isPrintoperation()
223223

224224
public String getProduct()
225225
{
226-
return "fastcdr";
226+
return "fastdds";
227227
}
228228

229229
public String getVersion()

0 commit comments

Comments
 (0)