Skip to content

Commit 39ae662

Browse files
committed
Update version to 2.0.2 and update slf4j/logback
1 parent 787f8b4 commit 39ae662

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-client</artifactId>

client/src/main/java/org/red5/client/Red5Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public final class Red5Client {
1818
/**
1919
* Current server version with revision
2020
*/
21-
public static final String VERSION = "Red5 Client 2.0.1";
21+
public static final String VERSION = "Red5 Client 2.0.2";
2222

2323
/**
2424
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope

common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-server-common</artifactId>
@@ -105,7 +105,7 @@
105105
<dependency>
106106
<groupId>net.engio</groupId>
107107
<artifactId>mbassador</artifactId>
108-
<version>2.0.1</version>
108+
<version>2.0.2</version>
109109
</dependency> -->
110110
<dependency>
111111
<groupId>junit</groupId>

common/src/main/java/org/red5/server/api/Red5.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import org.red5.logging.Red5LoggerFactory;
1717
import org.red5.server.api.scope.IScope;
1818
import org.slf4j.Logger;
19+
import org.slf4j.LoggerFactory;
1920

2021
/**
2122
* Utility class for accessing Red5 API objects.
@@ -40,7 +41,7 @@
4041
*/
4142
public final class Red5 {
4243

43-
private static Logger log = Red5LoggerFactory.getLogger(Red5.class);
44+
private static Logger log = LoggerFactory.getLogger(Red5.class);
4445

4546
private static boolean isDebug = log.isDebugEnabled();
4647

@@ -57,12 +58,12 @@ public final class Red5 {
5758
/**
5859
* Server version with revision
5960
*/
60-
public static final String VERSION = "Red5 Server 2.0.1";
61+
public static final String VERSION = "Red5 Server 2.0.2";
6162

6263
/**
6364
* Server version for fmsVer requests
6465
*/
65-
public static final String FMS_VERSION = "RED5/2,0,0,1";
66+
public static final String FMS_VERSION = "RED5/2,0,2,0";
6667

6768
/**
6869
* Server capabilities

io/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-io</artifactId>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<name>Red5</name>
2525
<description>The Red5 server</description>
2626
<groupId>org.red5</groupId>
27-
<version>2.0.1</version>
27+
<version>2.0.2</version>
2828
<url>https://github.com/Red5/red5-server</url>
2929
<inceptionYear>2005</inceptionYear>
3030
<organization>
@@ -99,8 +99,8 @@
9999
<red5-io.version>${project.version}</red5-io.version>
100100
<red5-server-common.version>${project.version}</red5-server-common.version>
101101
<red5-service.version>${project.version}</red5-service.version>
102-
<slf4j.version>2.0.11</slf4j.version>
103-
<logback.version>1.4.14</logback.version>
102+
<slf4j.version>2.0.13</slf4j.version>
103+
<logback.version>1.5.6</logback.version>
104104
<bc.version>1.78.1</bc.version>
105105
<mina.version>2.0.23</mina.version>
106106
<!-- Can no longer open-end spring, 6.0 forces jdk 17+ -->

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-server</artifactId>

service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-service</artifactId>

servlet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>2.0.1</version>
6+
<version>2.0.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-servlet</artifactId>

0 commit comments

Comments
 (0)