commit 0d821d7f8da8cb690e5366e18eb64dcc8514ff3d
parent d28a9ab9ad2f0c468e8c40b4689819db27aa1a52
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 24 Feb 2016 22:40:44 +0100
RRDA 1.02 release
Diffstat:
3 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,13 @@
+RRDA 1.02 (2016-02-24)
+
+- Adding CORS support by default
+- Updating import path for the 'idna' package, as code.google.com is
+ now closed
+- Use error code returned by dns.Exchange() to detect truncated DNS
+ messages
+
+
+
RRDA 1.01 (2014-05-03)
- Update to match Go DNS "IsDomainName" new prototype
diff --git a/README.md b/README.md
@@ -173,6 +173,6 @@ RRDA is developed by Frederic Cambus
Project Homepage : http://www.statdns.com
-Latest tarball release : http://www.statdns.com/rrda/rrda-1.01.tar.gz
+Latest tarball release : http://www.statdns.com/rrda/rrda-1.02.tar.gz
GitHub : https://github.com/fcambus/rrda
diff --git a/rrda.go b/rrda.go
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* */
-/* RRDA (RRDA REST DNS API) 1.01 */
+/* RRDA (RRDA REST DNS API) 1.02 */
/* Copyright (c) 2012-2016, Frederic Cambus */
/* http://www.statdns.com */
/* */
@@ -162,7 +162,7 @@ func ptr(w http.ResponseWriter, r *http.Request) {
}
func main() {
- header := "-------------------------------------------------------------------------------\n RRDA (RRDA REST DNS API) 1.01 (c) by Frederic Cambus 2012-2016\n-------------------------------------------------------------------------------"
+ header := "-------------------------------------------------------------------------------\n RRDA (RRDA REST DNS API) 1.02 (c) by Frederic Cambus 2012-2016\n-------------------------------------------------------------------------------"
host := flag.String("host", "127.0.0.1", "Set the server host")
port := flag.String("port", "8080", "Set the server port")