Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
MagielBruntink committed Jan 28, 2021
2 parents f1575da + 3ba8979 commit 9f10128
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,22 +188,25 @@ An example message:
"input": {},
"created_at": "1595434993",
"payload": {
"analyzer_name": "Lizard",
"analyzer_version": "1.17.7",
"analysis_timestamp": "1596455923",
"quality_analyzer_name": "Lizard",
"quality_analyzer_version": "1.17.7",
"quality_analysis_timestamp": "1596455923",
"product": "fasten-project:fasten",
"version": "1.0.0",
"forge": "mvn",
"language": "java",
"filepath": "/fasten/core/server.java",
"name": "callable",
"long_name": "callable(int i)",
"filename": "/fasten/core/server.java",
"callable_name": "callable",
"callable_long_name": "callable(int i)",
"start_line": 33,
"end_line": 42,
"metrics": {
"nloc": 10,
"complexity": 5,
"...": 0
"complexity": 5,
"token_count": 20,
"parameters": ["i"],
"parameter_count": 1,
"length": 10
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

plugin_name = 'RapidPlugin'
plugin_description = 'A FASTEN plug-in to populate risk related metadata for a product.'
plugin_version = '1.1.2'
plugin_version = '1.1.3'


def get_args_parser():
Expand Down
4 changes: 2 additions & 2 deletions rapidplugin/domain/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ def __init__(self):
def metadata(self):
return {
"filename": self.filename,
"name": self.name,
"long_name": self.long_name,
"callable_name": self.name,
"callable_long_name": self.long_name,
"start_line": self.start_line,
"end_line": self.end_line
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='quality-analyzer',
version='1.1.2',
version='1.1.3',
description='FASTEN RAPID Plugin',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9f10128

Please sign in to comment.