prepare release 1.7.7

This commit is contained in:
Ceki Gulcu 2014-04-04 13:08:46 +02:00
parent 0ee9c99930
commit 46cf4f7fed
17 changed files with 25 additions and 23 deletions

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -7,7 +7,7 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
<packaging>pom</packaging>
<name>SLF4J</name>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -7,7 +7,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.7-SNAPSHOT</version>
<version>1.7.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -29,17 +29,19 @@
<hr noshade="noshade" size="1"/>
<h3>2014 - Release of SLF4J 1.7.7 (or 1.8)</h3>
<h3>4th of April, 2014 - Release of SLF4J 1.7.7 </h3>
<p>SFL4J API now uses generics. This enhancement was contributed by
Otavio Garcia.</p>
Otavio Garcia. Due to erasure of generics in Java, the changes are
backward-compatible.</p>
<p>The slf4j-migrator can now convert statements using the long deprecated
<code>Category</code> class. The following statement
</p>
<pre>Category cat = Category.getInstance(Foo.class);</pre>
<p>will be converted as</p>
<pre>Logger cat = LoggerFactory.getLogger(Foo.class);</pre>
<code>Category</code> class.</p>
<p>Added the <code>SimpleLayout</code> and
<code>FileAppender</code> classes to the log4j-over-slf4j
module.</p>
<h3>February 5th, 2014 - Release of SLF4J 1.7.6</h3>