Skip to content

Commit 885a1dd

Browse files
committed
[CORRECTIVE] Fixed a bug with imported SW components not displaying in system design.
1 parent bdd5f57 commit 885a1dd

2 files changed

Lines changed: 9 additions & 12 deletions

File tree

library/LibraryUtils.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,10 +441,7 @@ void updateSystemDesignV2(LibraryInterface* lh, VLNV const& hwDesignVLNV, Design
441441
continue;
442442
}
443443

444-
if (!swInstance->isImported())
445-
{
446-
swInstances.append(swInstance);
447-
}
444+
swInstances.append(swInstance);
448445

449446
oldSWInstances.append(swInstance);
450447
}

version.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
#ifndef VERSIONNO__H
1111
#define VERSIONNO__H
1212

13-
#define VERSION_FULL 3.13.196.0
13+
#define VERSION_FULL 3.13.197.0
1414

1515
#define VERSION_BASEYEAR 0
16-
#define VERSION_DATE "2025-09-25"
17-
#define VERSION_TIME "14:44:54"
16+
#define VERSION_DATE "2025-09-26"
17+
#define VERSION_TIME "07:52:04"
1818

1919
#define VERSION_MAJOR 3
2020
#define VERSION_MINOR 13
21-
#define VERSION_BUILDNO 196
21+
#define VERSION_BUILDNO 197
2222
#define VERSION_EXTEND 0
2323

24-
#define VERSION_FILE 3,13,196,0
25-
#define VERSION_PRODUCT 3,13,196,0
26-
#define VERSION_FILESTR "3,13,196,0"
27-
#define VERSION_PRODUCTSTR "3,13,196,0"
24+
#define VERSION_FILE 3,13,197,0
25+
#define VERSION_PRODUCT 3,13,197,0
26+
#define VERSION_FILESTR "3,13,197,0"
27+
#define VERSION_PRODUCTSTR "3,13,197,0"
2828

2929
#endif

0 commit comments

Comments
 (0)