Skip to content

Commit b23158b

Browse files
committed
Preparation for 2.1 release.
1 parent 09f5d5b commit b23158b

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cache:
77
- $HOME/.m2
88
before_install:
99
# install the gwt-material-jquery because it will depends on built in jquery
10-
- git clone -b release_2.1 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
10+
- git clone -b master https://github.com/GwtMaterialDesign/gwt-material-jquery.git
1111
- cd gwt-material-jquery
1212
- mvn install -DskipTests=true -DdryRun=true
1313
- cd ..

.utility/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -ev
3-
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "release_2.1" ]; then
3+
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
44
echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml
55
mvn deploy --settings ~/settings.xml
66
fi

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@
1111
- [PWA Support](https://github.com/GwtMaterialDesign/gwt-material/wiki/PWA-:-Service-Worker-Automation)
1212

1313
## Demo
14-
* [2.0.1 Release Demo](http://gwtmaterialdesign.github.io/gwt-material-demo/)
15-
* [2.1 Snapshot Demo](http://gwtmaterialdesign.github.io/gwt-material-demo/snapshot/)
14+
* [2.1 Release Demo](http://gwtmaterialdesign.github.io/gwt-material-demo/)
15+
* [2.2 Snapshot Demo](http://gwtmaterialdesign.github.io/gwt-material-demo/snapshot/)
1616

1717
## Documentation
1818
Support documentation can be found [here](https://github.com/GwtMaterialDesign/gwt-material/wiki) <br/>
1919
We created <a href="http://gwtmaterialdesign.github.io/gwt-material-demo/apidocs" > Java Docs </a> for developers
2020

2121

2222
## Maven
23-
### Current Version 2.0.1
23+
### Current Version 2.1
2424
```xml
2525
<dependency>
2626
<groupId>com.github.gwtmaterialdesign</groupId>
2727
<artifactId>gwt-material</artifactId>
28-
<version>2.0.1</version>
28+
<version>2.1</version>
2929
</dependency>
3030
```
31-
### Snapshot Version 2.1-SNAPSHOT
31+
### Snapshot Version 2.2-SNAPSHOT
3232
```xml
3333
<dependency>
3434
<groupId>com.github.gwtmaterialdesign</groupId>
3535
<artifactId>gwt-material</artifactId>
36-
<version>2.1-SNAPSHOT</version>
36+
<version>2.2-SNAPSHOT</version>
3737
</dependency>
3838
```
3939

@@ -61,6 +61,7 @@ Please follow the [contribution document](https://github.com/GwtMaterialDesign/g
6161
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-themes" >Themes</a></li>
6262
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-jquery" >JQuery</a></li>
6363
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-table" >Table</a></li>
64+
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-amcharts" >AmCharts</a></li>
6465
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-demo" >Demo</a></li>
6566
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-demo-errai" >Errai Demo</a></li>
6667
<li><a href="https://github.com/GwtMaterialDesign/gwt-material-template" >Starter</a></li>

gwt-material/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>gwt-material-parent</artifactId>
66
<groupId>com.github.gwtmaterialdesign</groupId>
7-
<version>2.1-SNAPSHOT</version>
7+
<version>2.1</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.github.gwtmaterialdesign</groupId>
2020
<artifactId>gwt-material-jquery</artifactId>
21-
<version>2.1-SNAPSHOT</version>
21+
<version>2.1</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>com.google.gwt</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.gwtmaterialdesign</groupId>
77
<artifactId>gwt-material-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<packaging>pom</packaging>
1010
<modules>
1111
<module>gwt-material</module>
@@ -65,7 +65,7 @@
6565
<connection>scm:git:[email protected]:GwtMaterialDesign/gwt-material.git</connection>
6666
<developerConnection>scm:git:[email protected]:GwtMaterialDesign/gwt-material.git</developerConnection>
6767
<url>http://github.com/GwtMaterialDesign/gwt-material</url>
68-
<tag>v2.1-SNAPSHOT</tag>
68+
<tag>v2.1</tag>
6969
</scm>
7070

7171
<licenses>

0 commit comments

Comments
 (0)