Skip to content

Commit

Permalink
chore(intellij): v3.2.0 (#3077)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Dec 20, 2021
1 parent 9b037c5 commit 77ebe56
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extensions/intellij/intellij_generator_plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.bloc'
version '3.1.0'
version '3.2.0'

apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<change-notes><![CDATA[
<ul>
<li>v3.2.0 - Support for MockBloc, MockCubit, and Fake snippets</li>
<li>v3.1.0 - Support for Wrap with BlocSelector</li>
<li>v3.0.0 - Support for Bloc v7.2.0 (on<Event> API)</li>
<li>v2.4.0 - Add Convert to Multi Widget Actions</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,23 +250,23 @@
<variable name="Subject" expression="" defaultValue="&quot;Subject&quot;" alwaysStopAt="true"/>
<context>
<option name="DART" value="true"/>
<option name="DART_TOPLEVEL" value="false"/>
<option name="DART_TOPLEVEL" value="true"/>
</context>
</template>
<template name="mockcubit" value="class Mock$Subject$Cubit extends MockCubit&lt;$Subject$State&gt; implements $Subject$Cubit {}"
description="Create a mock cubit" toReformat="false" toShortenFQNames="true">
<variable name="Subject" expression="" defaultValue="&quot;Subject&quot;" alwaysStopAt="true"/>
<context>
<option name="DART" value="true"/>
<option name="DART_TOPLEVEL" value="false"/>
<option name="DART_TOPLEVEL" value="true"/>
</context>
</template>
<template name="fake" value="class Fake$Subject$ extends Fake implements $Subject$ {}"
description="Create a fake object" toReformat="false" toShortenFQNames="true">
<variable name="Subject" expression="" defaultValue="&quot;Subject&quot;" alwaysStopAt="true"/>
<context>
<option name="DART" value="true" />
<option name="DART_TOPLEVEL" value="false" />
<option name="DART_TOPLEVEL" value="true" />
</context>
</template>

Expand Down

0 comments on commit 77ebe56

Please sign in to comment.