Skip to content

Commit

Permalink
馃弲 Release 3.0.2 - The @ Version
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jun 4, 2021
1 parent 97f5650 commit b969911
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ An extra complicated markdown parsing library with extra special functions.

Please Look into the javadocs for more info or check our [reference documentation](http://jesperancinha.github.io/markdowner/) for more details.

## Release 3.0.2 - 2021/06/04

- The @ release

## Release 3.0.1 - 2021/05/24

- Adds title as an optional parameter
Expand Down Expand Up @@ -70,7 +74,7 @@ Please Look into the javadocs for more info or check our [reference documentatio
<dependency>
<groupId>org.jesperancinha.parser</groupId>
<artifactId>markdowner</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
<type>pom</type>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions markdowner-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>markdowner</artifactId>
<groupId>org.jesperancinha.parser</groupId>
<version>3.0.1</version>
<version>3.0.2</version>
</parent>
<artifactId>markdowner-core</artifactId>
<name>Markdowner core</name>
Expand All @@ -32,7 +32,7 @@
<connection>git@github.com:jesperancinha/markdowner.git</connection>
<developerConnection>git@github.com:jesperancinha/markdowner.git</developerConnection>
<url>https://github.com/jesperancinha/markdowner/tree/master/markdowner-core</url>
<tag>3.0.1</tag>
<tag>3.0.2</tag>
</scm>
<distributionManagement>
<snapshotRepository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class BadgeParser {

private static final ObjectMapper objectMapper = new ObjectMapper();
private static final String BADGE_REGEX =
"(\\[!\\[%s]\\(http[s]*:\\/\\/%s[sa-zA-Z0-9\\/\\.\\]\\?\\=\\-\\&\\%%\\;\\_\\#\\:\\\"\\ ]*\\)]\\((http[s]*:\\/\\/)*[a-zA-Z0-9\\/\\.\\]\\=\\?\\-\\&\\%%\\;\\_\\#\\:\\\"\\ ]*\\))";
"(\\[!\\[%s]\\(http[s]*:\\/\\/%s[sa-zA-Z0-9\\/\\.\\]\\?\\=\\-\\&\\%%\\;\\_\\#\\:\\@\\\"\\ ]*\\)]\\((http[s]*:\\/\\/)*[a-zA-Z0-9\\/\\.\\]\\=\\?\\-\\&\\%%\\;\\_\\#\\:\\@\\\"\\ ]*\\))";
private static final Pattern NOT_ACCEPTED_REGEX =
Pattern.compile("color=(?!(informational)).");
public static final Map<String, BadgeType> badgeTypes = parseBadgeTypes();
Expand Down
4 changes: 2 additions & 2 deletions markdowner-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>markdowner</artifactId>
<groupId>org.jesperancinha.parser</groupId>
<version>3.0.1</version>
<version>3.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -30,7 +30,7 @@
<connection>git@github.com:jesperancinha/markdowner.git</connection>
<developerConnection>git@github.com:jesperancinha/markdowner.git</developerConnection>
<url>https://github.com/jesperancinha/markdowner/tree/master/markdowner-filter</url>
<tag>3.0.1</tag>
<tag>3.0.2</tag>
</scm>
<distributionManagement>
<snapshotRepository>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.jesperancinha.parser</groupId>
<artifactId>markdowner</artifactId>
<name>Markdowner parent POM</name>
<version>3.0.1</version>
<version>3.0.2</version>
<description>Parent pom of the markdowner libraries</description>
<url>https://github.com/jesperancinha/markdowner</url>
<licenses>
Expand All @@ -27,7 +27,7 @@
<connection>scm:git:git://github.com:jesperancinha/markdowner.git</connection>
<developerConnection>scm:git:git://github.com:jesperancinha/markdowner.git</developerConnection>
<url>https://github.com/jesperancinha/markdowner</url>
<tag>3.0.1</tag>
<tag>3.0.2</tag>
</scm>
<distributionManagement>
<snapshotRepository>
Expand Down Expand Up @@ -64,7 +64,7 @@
<commons-io.version>2.8.0</commons-io.version>
<gson.version>2.8.6</gson.version>
<mapstruct-processor.version>1.3.0.Final</mapstruct-processor.version>
<markdowner.version>3.0.1</markdowner.version>
<markdowner.version>3.0.2</markdowner.version>
<jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version>
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<jaxb-api.version>2.3.1</jaxb-api.version>
Expand Down

0 comments on commit b969911

Please sign in to comment.