Skip to content

Commit

Permalink
Bugfix Version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamThimm committed Oct 22, 2024
1 parent 2fe7c38 commit 57fc8cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Simply add the following to the plugins section of the config
```yaml
- group-id: de.kontext-e.jqassistant.plugin
artifact-id: jqassistant.plugin.csharp
version: 0.3.1
version: 0.3.2
```
### Manual Installation
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>de.kontext-e.jqassistant.plugin</groupId>
<artifactId>jqassistant.plugin.csharp</artifactId>
<version>0.3.1</version>
<version>0.3.2</version>

<name>jQAssistant CSharp Plugin</name>
<description>The jQAssistant plugin to scan and to analyze a CSharp instance.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
(sourceNamespace)-[d:DEPENDS_ON]-(targetNamespace)
ON CREATE SET
d.coupling = coupling
ON MERGE SET
ON MATCH SET
d.coupling = d.coupling + coupling
RETURN
sourceNamespace.fqn, targetNamespace.fqn, coupling
Expand All @@ -212,7 +212,7 @@
r=(p)-[d:DEPENDS_ON]-(b)
ON CREATE SET
d.coupling = coupling
ON MERGE SET
ON MATCH SET
d.coupling = d.coupling + coupling
RETURN DISTINCT
r
Expand Down

0 comments on commit 57fc8cd

Please sign in to comment.