Skip to content

Commit

Permalink
build: advance version to 0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lppedd committed Nov 10, 2020
1 parent d4dbb5e commit a65f2e5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "com.github.lppedd"
version = "0.16.0"
version = "0.16.1"

repositories {
maven("https://dl.bintray.com/kotlin/kotlin-eap")
Expand Down
6 changes: 3 additions & 3 deletions change-notes/0_16_0.html → change-notes/0_16_1.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h3>0.16.0 (10/11/2020)</h3>
<h3>0.16.1 (11/11/2020)</h3>
<p>
Twenty-sixth alpha release.<br/>
Twenty-seventh alpha release.<br/>
Features, fixes and refactorings:
</p>
<ul>
Expand All @@ -20,7 +20,7 @@ <h3>0.16.0 (10/11/2020)</h3>
This is accessible via the <code>Settings > Conventional Commit > Providers</code> tab.
</li>
<li>
Displayed changelogs/news inside a dedicated dialog (this very dialog!) and expose a public API.
Displayed changelogs/news inside a dedicated dialog and exposed a public API.
Even extensions are able to add their own tabs.
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
<commitInspectionProvider order="first" implementation="com.github.lppedd.cc.api.DefaultCommitInspectionProvider" />
<whatsNewProvider order="first" implementation="com.github.lppedd.cc.whatsnew.DefaultWhatsNewProvider">
<files>
<name version="0.16.0">0_16_0.html</name>
<name version="0.16.1">0_16_1.html</name>
<name version="0.15.3">0_15_3.html</name>
<name version="0.15.2">0_15_2.html</name>
</files>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div id="table-of-contents">
<h2>Table of contents:</h2>
<p>&#8226; Towards 1.0 and a plea to users</p>
<p>&#8226; Changes in 0.16.0</p>
<p>&#8226; Changes in 0.16.1</p>
<p>&#8226; Future plans</p>
</div>
<h1>Towards 1.0 and a plea to users</h1>
Expand Down Expand Up @@ -66,13 +66,13 @@ <h1>Towards 1.0 and a plea to users</h1>
With this in mind, I hope by the beginning of the new year we'll have the first
stable version.
</p>
<h1>Changes in 0.16.0</h1>
<h1>Changes in 0.16.1</h1>
<p>
This release packs more then 100 commits which include new features, extensive refactorings,
and bug fixes. Following is a short but comprehensive summary.
</p>
<!-- FEATURES -->
<p><strong>Features:</strong></p>
<p><b>Features:</b></p>
<p class="indented">
&#8226; differentiated the token's displayed value (in completion popup) from its real value.<br/>
This enhancement seems like a small detail, but it's huge as it let's us search an item by a comprehensible
Expand All @@ -89,21 +89,21 @@ <h1>Changes in 0.16.0</h1>
This is accessible via the <em>Settings > Conventional Commit > Providers</em> tab.
</p>
<p class="indented">
&#8226; displayed changelogs/news inside a dedicated dialog (this very dialog!) and expose a public API.
&#8226; displayed changelogs/news inside a dedicated dialog (this very dialog!) and exposed a public API.
Even extensions are able to add their own tabs.
</p>
<p class="indented">
&#8226; preselected the top item in completion's popup when using <em>context completion</em>.<br/>
This change removes the need to use the down-arrow key to begin selecting items,
so that you can immediately complete.<br/>
Should this be optional? Let me know in the <a href="https://github.com/lppedd/idea-conventional-commit/issues/35">feedback issue</a>.
<b>Should this be optional?</b> Let me know in the <a href="https://github.com/lppedd/idea-conventional-commit/issues/35">feedback issue</a>.
</p>
<p class="indented">
&#8226; cleaned-up whatever the plugin created if it is uninstalled.<br/>
Currently only some non-roamable properties are removed, but this will be expanded in the future if necessary.
</p>
<!-- FIXES -->
<p><strong>Fixes:</strong></p>
<p><b>Fixes:</b></p>
<p class="indented">
&#8226; used the correct project's base path.<br/>
Probably from 2020.3, the platform API started returning the <code>.idea</code> folder as the project's base path.
Expand All @@ -116,11 +116,11 @@ <h1>Changes in 0.16.0</h1>
to workaround it.
</p>
<!-- REFACTORINGS -->
<p><strong>Refactorings:</strong></p>
<p><b>Refactorings:</b></p>
<p class="indented">
&#8226; improved the completion process.<br/>
In conjunction with the first mentioned feature, I've replaced the underlying code that performs the completion item
insertion. That is now smarter and lighter, but <strong>there might be issues, so report them in case</strong>.
insertion. That is now smarter and lighter, but <b>there might be issues, so report them in case</b>.
</p>
<p class="indented">
&#8226; improved the UI.<br/>
Expand All @@ -137,7 +137,7 @@ <h1>Future plans</h1>
What I already planned:
</p>
<p class="indented">
<strong>&#8226; work on new extensions! I've already written a POC for GitHub issues integration.</strong>
<b>&#8226; work on new extensions! I've already written a POC for GitHub issues integration.</b>
</p>
<p class="indented">&#8226; handle more edge cases in completion.</p>
<p class="indented">
Expand Down

0 comments on commit a65f2e5

Please sign in to comment.