diff --git a/ChangeLog b/ChangeLog index 82abe99..e9025c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +RRDA 1.01 (2014-05-03) + +- Update to match Go DNS "IsDomainName" new prototype +- Adding Debian init script +- Adding FreeBSD rc.d script +- Adding JSONP support + + + RRDA 1.00 (2013-07-01) - Initial release diff --git a/README.md b/README.md index cbf0ad9..efc2d23 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,6 @@ RRDA is developed by Frederic Cambus Project Homepage : http://www.statdns.com -Latest tarball release : http://www.statdns.com/rrda/rrda-1.00.tar.gz +Latest tarball release : http://www.statdns.com/rrda/rrda-1.01.tar.gz GitHub : https://github.com/fcambus/rrda diff --git a/rrda.go b/rrda.go index afc0755..39be751 100644 --- a/rrda.go +++ b/rrda.go @@ -1,10 +1,10 @@ /*****************************************************************************/ /* */ -/* RRDA (RRDA REST DNS API) 1.00 (c) by Frederic Cambus 2012-2014 */ +/* RRDA (RRDA REST DNS API) 1.01 (c) by Frederic Cambus 2012-2014 */ /* http://www.statdns.com */ /* */ /* Created: 2012/03/11 */ -/* Last Updated: 2014/03/26 */ +/* Last Updated: 2014/05/03 */ /* */ /* RRDA is released under the BSD 3-Clause license. */ /* See LICENSE file for details. */ @@ -160,7 +160,7 @@ func ptr(w http.ResponseWriter, r *http.Request) { } func main() { - header := "-------------------------------------------------------------------------------\n RRDA (RRDA REST DNS API) 1.00 (c) by Frederic Cambus 2012-2014\n-------------------------------------------------------------------------------" + header := "-------------------------------------------------------------------------------\n RRDA (RRDA REST DNS API) 1.01 (c) by Frederic Cambus 2012-2014\n-------------------------------------------------------------------------------" host := flag.String("host", "127.0.0.1", "Set the server host") port := flag.String("port", "8080", "Set the server port")