Skip to content

Commit

Permalink
update version 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noguespi committed Jan 15, 2022
1 parent 26665c8 commit 0798097
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.serphacker.serposcope</groupId>
<artifactId>serposcope</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>
<artifactId>core</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM java:8-jre

ARG SERPOSCOPE_VERSION

ENV SERPOSCOPE_VERSION ${SERPOSCOPE_VERSION:-2.14.0}
ENV SERPOSCOPE_VERSION ${SERPOSCOPE_VERSION:-2.15.0}

COPY serposcope /etc/default/serposcope
RUN wget https://serposcope.serphacker.com/download/${SERPOSCOPE_VERSION}/serposcope_${SERPOSCOPE_VERSION}_all.deb -O /tmp/serposcope.deb
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.serphacker.serposcope</groupId>
<artifactId>serposcope</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
<packaging>pom</packaging>
<name>serposcope</name>
<description>serposcope SEO rank checker</description>
Expand Down
2 changes: 1 addition & 1 deletion scraper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.serphacker.serposcope</groupId>
<artifactId>serposcope</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>
<artifactId>scraper</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>serposcope</artifactId>
<groupId>com.serphacker.serposcope</groupId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>

<artifactId>web</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion web/src/main/java/serposcope/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class Version implements Comparable<Version> {

private final static Pattern PATTERN = Pattern.compile("^([0-9]+)\\.([0-9]+)\\.([0-9]+)(-[A-Z]+[0-9]+)?$");
public final static Version CURRENT = new Version("2.14.0");
public final static Version CURRENT = new Version("2.15.0");

int major;
int minor;
Expand Down

0 comments on commit 0798097

Please sign in to comment.