Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(actions): publish v3.16.2 to npm #61

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accordproject/concerto-codegen",
"version": "3.16.1",
"version": "3.16.2",
"description": "CodeGen for the Concerto Modeling Language",
"homepage": "https://github.com/accordproject/concerto",
"engines": {
Expand Down
4 changes: 3 additions & 1 deletion types/lib/codegen/fromcto/plantuml/plantumlvisitor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ declare class PlantUMLVisitor extends DiagramVisitor {
/**
* Escape fully qualified names. We preserve the dots in the
* package name, remove the '@' symbol because it is invalid
* and remove the dots in the version (because otherwise packages get created)
* and remove the dots in the version (because otherwise packages get created).
* We also replace all '-' characters with '_' because they are invalid in
* PlantUML identifiers as '-' can appear in a semver string.
* @param {String} input - the object being visited
* @return {String} string - the parameter
* @protected
Expand Down
Loading