Skip to content

Commit 5a36070

Browse files
committed
Prepare for v0.3.1 release.
1 parent 3461afa commit 5a36070

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# wicket-iziToast
2-
[Apache Wicket](https://wicket.apache.org/) utilities for using [iziToast](http://izitoast.marcelodolza.com/).
2+
[Apache Wicket](https://wicket.apache.org/) utilities for using [iziToast](http://izitoast.marcelodolza.com/).
33

44

55
[![Build Status](https://travis-ci.org/try0/wicket-iziToast.svg?branch=master)](https://travis-ci.org/try0/wicket-iziToast)
66
[![codecov](https://codecov.io/gh/try0/wicket-iziToast/branch/master/graph/badge.svg)](https://codecov.io/gh/try0/wicket-iziToast)
7-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=jp.try0.wicket%3Awicket-iziToast-parent&metric=alert_status)](https://sonarcloud.io/dashboard?id=jp.try0.wicket%3Awicket-iziToast-parent)
7+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=jp.try0.wicket%3Awicket-iziToast-parent&metric=alert_status)](https://sonarcloud.io/dashboard?id=jp.try0.wicket%3Awicket-izitoast-parent)
88

99

1010
# Version
11-
0.3.0
11+
0.3.1
1212
wicket:8.x iziToast:1.4.0
1313

1414

@@ -24,7 +24,7 @@ Deployed [wicket-izitoast-samples](https://try0.jp/app/wicket-izitoast-samples/)
2424
<dependency>
2525
<groupId>jp.try0.wicket</groupId>
2626
<artifactId>wicket-izitoast-core</artifactId>
27-
<version>0.3.0</version>
27+
<version>0.3.1</version>
2828
</dependency>
2929
```
3030

@@ -43,30 +43,30 @@ IziToastSetting
4343

4444
### Display toast using Behavior
4545

46-
add IziToastBehavior to any of components in page.
46+
add IziToastBehavior to any of components in page.
4747
(If you set setAutoAppendBehavior to true when initializing settings, no need this code.)
4848
```java
4949
add(new IziToastBehavior());
5050
```
5151

5252
IziToastBehavior converts feedback messages to JavaScript for displaying toast.
5353

54-
org.apache.wicket.Component#success(Serializable) org.apache.wicket.Session#success(Serializable)
55-
⇒ success toast
54+
org.apache.wicket.Component#success(Serializable) org.apache.wicket.Session#success(Serializable)
55+
⇒ success toast
5656

57-
org.apache.wicket.Component#info(Serializable)
58-
org.apache.wicket.Session#info(Serializable)
59-
⇒ info toast
57+
org.apache.wicket.Component#info(Serializable)
58+
org.apache.wicket.Session#info(Serializable)
59+
⇒ info toast
6060

61-
org.apache.wicket.Component#warn(Serializable)
62-
org.apache.wicket.Session#warn(Serializable)
63-
⇒ warn toast
61+
org.apache.wicket.Component#warn(Serializable)
62+
org.apache.wicket.Session#warn(Serializable)
63+
⇒ warn toast
6464

65-
org.apache.wicket.Component#error(Serializable)
66-
org.apache.wicket.Session#error(SerializableSerializable)
67-
org.apache.wicket.Component#fatal(Serializable)
68-
org.apache.wicket.Session#fatal(Serializable)
69-
⇒ error toast
65+
org.apache.wicket.Component#error(Serializable)
66+
org.apache.wicket.Session#error(SerializableSerializable)
67+
org.apache.wicket.Component#fatal(Serializable)
68+
org.apache.wicket.Session#fatal(Serializable)
69+
⇒ error toast
7070

7171

7272
### Display toast manually

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>jp.try0.wicket</groupId>
77
<artifactId>wicket-izitoast-parent</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<packaging>pom</packaging>
1010

1111
<name>wicket-izitoast-parent</name>

wicket-izitoast-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>jp.try0.wicket</groupId>
88
<artifactId>wicket-izitoast-parent</artifactId>
9-
<version>0.3.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111
<artifactId>wicket-izitoast-core</artifactId>
1212
<name>wicket-izitoast-core</name>

wicket-izitoast-samples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>wicket-izitoast-parent</artifactId>
88
<groupId>jp.try0.wicket</groupId>
9-
<version>0.3.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

1212
<artifactId>wicket-izitoast-samples</artifactId>
@@ -28,7 +28,7 @@
2828
<jackson-databind.version>2.10.0</jackson-databind.version>
2929
<jackson-annotations.version>2.10.0</jackson-annotations.version>
3030
<commons-text.version>1.7</commons-text.version>
31-
<wicket-izitoast.version>0.3.0</wicket-izitoast.version>
31+
<wicket-izitoast.version>0.3.1</wicket-izitoast.version>
3232
<wtp.version>none</wtp.version>
3333
</properties>
3434
<dependencies>

0 commit comments

Comments
 (0)