2.0-rc2 release

git-svn-id: svn://svn.code.sf.net/p/mockftpserver/code@203 531de8e6-9941-0410-b38b-9a92acbe0330
diff --git a/MockFtpServer/CHANGELOG.txt b/MockFtpServer/CHANGELOG.txt
index 8e2d605..469caff 100644
--- a/MockFtpServer/CHANGELOG.txt
+++ b/MockFtpServer/CHANGELOG.txt
@@ -1,6 +1,28 @@
 MockFtpServer Change Log

 -------------------------------------------------------------------------------

 

+Changes in version 2.0-rc2 (12 Dec 2008)

+------------------------------------------

+- BUG FIX: AbstractFtpServer: Fix bug when iterating through sessions.

+- [BREAKING CHANGE] Move ConnectCommandHandler into core package.

+- [BREAKING CHANGE] Unify Fake and Stub CommandHandlers. Change ServerConfiguration to remove getReplyTextBundle(); make AbstractFakeCommandHandler implement ReplyTextBundleAware instead. Change FakeFtpServer to check for ReplyTextBundleAware and set replyTextBundle. Pull common from stub/fake into AbstractCommandHandler.

+- [BREAKING CHANGE] Rename AbstractCommandHandler to AbstractTrackingCommandHandler.

+- Create AbstractStaticReplyCommandHandler, and make both AbstractStubCommandHandler and StaticReplyCommandHandler subclasses.

+- Create new UnrecognizedCommandHandler, and use to return 502 reply from FakeFtpServer and StubFtpServer when a requested command is not supported.

+- Add support for STAT command; Add systemStatus property to FakeFtpServer.

+- Add support for SMNT command to FakeFtpServer;

+- AbstractFtpServer: Add createSession() method. Make some attributes protected.

+- StubFtpServer: Introduce AbstractStorCommandHandler. Remove final from stub CommandHandler classes.

+- Cleanup code and javadoc

+- DOCS:	Add “Requirements” section to main (index) page. Also “Maven” section.

+- DOCS: Add "Configuring CommandHandler for New (Unsupported) Command" and “Creating Your Own Custom CommandHandler Class” sections to StubFtpServer Getting Started Guide.

+- DOCS: Add "Configuring Custom CommandHandlers" section to Getting Started Guide (FakeFtpServer).

+- TESTS: Move AbstractCommandHandlerTest into core package.

+- TESTS: Create sample test of FakeFtpServer with StaticReplyCommandHandler command handler(s).

+- Create source jar during package and include within assemblies.

+- Change "assembly.xml" to include "fakeftpserver*.xml" files.

+

+

 Changes in version 2.0-rc1 (23 Nov 2008)

 ------------------------------------------

 NEW FakeFtpServer.

diff --git a/MockFtpServer/pom.xml b/MockFtpServer/pom.xml
index efeb63f..f5c3fd7 100644
--- a/MockFtpServer/pom.xml
+++ b/MockFtpServer/pom.xml
@@ -15,7 +15,7 @@
         either success or failure scenarios. You can also verify expected command invocations.

     </description>

     <packaging>jar</packaging>

-    <version>2.0-rc2-SNAPSHOT</version>

+    <version>2.0-rc2</version>

     <url>http://mockftpserver.sourceforge.net/</url>

 

     <scm>

diff --git a/MockFtpServer/src/site/apt/index.apt b/MockFtpServer/src/site/apt/index.apt
index 21d4560..4a96b09 100644
--- a/MockFtpServer/src/site/apt/index.apt
+++ b/MockFtpServer/src/site/apt/index.apt
@@ -51,7 +51,7 @@
   <dependency>

     <groupId>org.mockftpserver</groupId>

     <artifactId>MockFtpServer</artifactId>

-    <version>2.0-rc1</version>

+    <version>2.0-rc2</version>

     <scope>test</scope>

   </dependency>

 --------------------
\ No newline at end of file