Skip to content

Commit 77df395

Browse files
committed
Bump version, update readme and description
1 parent 0671b2d commit 77df395

File tree

3 files changed

+26
-7
lines changed

3 files changed

+26
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
This plugin adds an intention to open regular expressions on regex101.com
44

5-
[![Plugin repository](https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
5+
[![Plugin repository](https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101/versions)
66
[![Plugin downloads](https://img.shields.io/jetbrains/plugin/d/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
7-
[![Plugin stars](https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101)
7+
[![Plugin stars](https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square)](https://plugins.jetbrains.com/plugin/14461-open-regex101/reviews)
88
[![Build status](https://img.shields.io/github/workflow/status/aesy/regex101-intellij/Continous%20Integration?style=flat-square)](https://github.com/aesy/regex101-intellij/actions)
99
[![Test coverage](https://img.shields.io/codecov/c/github/aesy/regex101-intellij?style=flat-square)](https://codecov.io/github/aesy/regex101-intellij)
1010
[![MIT license](https://img.shields.io/github/license/aesy/regex101-intellij.svg?style=flat-square)](https://github.com/aesy/regex101-intellij/blob/master/LICENSE)
1111

1212
## Installation
1313

14-
Download and install the plugin through your IDE or through [the marketplace](https://plugins.jetbrains.com/plugin/14461-open-regex101):
14+
Download and install the plugin through your IDE or through [the marketplace](https://plugins.jetbrains.com/plugin/14461-open-regex101).
1515

1616
![Marketplace](./img/installation.png)
1717

1818
## Usage
1919

20-
Show context actions on a regular expression and pick "Open RegExp on regex101.com":
20+
Show context actions on a regular expression and select "Open RegExp on regex101.com".
2121

2222
![Context actions](./img/usage.png)
2323

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "io.aesy.regex101"
11-
version = "0.1"
11+
version = "0.2"
1212

1313
repositories {
1414
mavenCentral()

src/main/resources/META-INF/plugin.xml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
<idea-plugin>
22
<id>io.aesy.regex101</id>
33
<name>Open Regex101</name>
4-
<version>0.1</version>
4+
<version>0.2</version>
55
<vendor email="isak.wertwein@gmail.com" url="https://github.com/aesy/regex101-intellij">Isak Wertwein</vendor>
66
<category>Intention</category>
77

88
<description><![CDATA[
9-
Adds an intention to open regular expressions on regex101.com
9+
<html>
10+
<p>Adds an intention to open regular expressions on regex101.com</p>
11+
<br>
12+
<img src="https://raw.githubusercontent.com/aesy/regex101-intellij/master/img/usage.png">
13+
</html>
1014
]]></description>
1115

16+
<change-notes><![CDATA[
17+
<html>
18+
<b>Changes in version 0.2:</b>
19+
<ul>
20+
<li>Fix inconsistent unescaping</li>
21+
<li>Java 8 compatibility</li>
22+
</ul>
23+
24+
<b>Changes in version 0.1:</b>
25+
<ul>
26+
<li>Initial release</li>
27+
</ul>
28+
</html>
29+
]]></change-notes>
30+
1231
<idea-version since-build="192.5728.98"/>
1332

1433
<depends>com.intellij.modules.lang</depends>

0 commit comments

Comments
 (0)