aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md11
-rw-r--r--core/pom.xml2
-rw-r--r--pom.xml2
-rw-r--r--samples/pom.xml6
-rw-r--r--webserver/markdown-plugin/pom.xml8
-rw-r--r--webserver/pom.xml6
-rw-r--r--websocket/pom.xml4
7 files changed, 22 insertions, 17 deletions
diff --git a/README.md b/README.md
index afb6004..0dba034 100644
--- a/README.md
+++ b/README.md
@@ -6,8 +6,6 @@
## Current major development efforts
-Waffle.io Issue Tracking: [![Stories in Ready](https://badge.waffle.io/NanoHttpd/nanohttpd.png?label=ready)](https://waffle.io/NanoHttpd/nanohttpd)
-
*Core*
* Please take a look at the new "ssl-support" branch containing submitted code adding SSL support to NanoHttpd. It's a great new feature that needs all eyes to polish in preparation for a release, making sure it works on all platforms.
@@ -34,6 +32,9 @@ Waffle.io Issue Tracking: [![Stories in Ready](https://badge.waffle.io/NanoHttpd
* Temp file usage and threading model are easily cutomized.
* Persistent connections (Connection "keep-alive") support allowing multiple requests to be served over a single socket connection.
+## Websocket Support
+* Tested on Firefox, Chrome and IE.
+
## Webserver Features
* Supports both dynamic content and file serving.
* Default code serves files and shows all HTTP parameters and headers.
@@ -180,9 +181,13 @@ the samples from the runtime JAR to further slim it down.
The two projects pooled resources in early 2013, merging code-bases, to better support the
user base and reduce confusion over why _two_ NanoHttpd projects existed.
-http://nanohttpd.com - went live July 1st, 2013.
+## Nanohttp.com site
+
+* http://nanohttpd.com - went live July 1st, 2013.
+* Moved hosting, adding news and better documentation April 2014.
## Version History (Java 6+ version)
+* 2.1.0 (2014-04-23) : Websocket Support
* 2.0.5 (2013-12-12) : Cleanup and stability fixes.
* 2.0.4 (2013-09-15) : Added basic cookie support, experimental SSL support and runtime extensions.
* 2.0.3 (2013-06-17) : Implemented 'Connection: keep-alive', (tested against latest Mozilla Firefox).
diff --git a/core/pom.xml b/core/pom.xml
index bc46337..e82d9d0 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -4,7 +4,7 @@
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>jar</packaging>
<name>NanoHttpd-Core</name>
diff --git a/pom.xml b/pom.xml
index 20d99b6..6dd6be2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-project</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>pom</packaging>
<name>NanoHttpd-Project</name>
diff --git a/samples/pom.xml b/samples/pom.xml
index be080ab..a32b07b 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -4,7 +4,7 @@
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-samples</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>jar</packaging>
<name>NanoHttpd-Samples</name>
@@ -14,12 +14,12 @@
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
</dependency>
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-webserver</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
</dependency>
</dependencies>
diff --git a/webserver/markdown-plugin/pom.xml b/webserver/markdown-plugin/pom.xml
index 4c901d9..278eb28 100644
--- a/webserver/markdown-plugin/pom.xml
+++ b/webserver/markdown-plugin/pom.xml
@@ -1,10 +1,10 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-webserver-markdown-plugin</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>jar</packaging>
<name>NanoHttpd-Webserver-Markdown-Plugin</name>
@@ -14,13 +14,13 @@
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-webserver</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
diff --git a/webserver/pom.xml b/webserver/pom.xml
index c983d4a..cfc0bd3 100644
--- a/webserver/pom.xml
+++ b/webserver/pom.xml
@@ -1,10 +1,10 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-webserver</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>jar</packaging>
<name>NanoHttpd-Webserver</name>
@@ -14,7 +14,7 @@
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
</dependency>
</dependencies>
diff --git a/websocket/pom.xml b/websocket/pom.xml
index 7d94041..ca24ea2 100644
--- a/websocket/pom.xml
+++ b/websocket/pom.xml
@@ -4,7 +4,7 @@
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd-websocket</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
<packaging>jar</packaging>
<name>NanoHttpd-Websocket</name>
@@ -14,7 +14,7 @@
<dependency>
<groupId>fi.iki.elonen</groupId>
<artifactId>nanohttpd</artifactId>
- <version>2.0.5</version>
+ <version>2.1.0</version>
</dependency>
</dependencies>