# HG changeset patch
# User Tassilo Philipp
# Date 1524156887 -7200
# Node ID 681db37a300c64b1bc715d3a48bc23ac7bcc0f40
# Parent  87fd9f34eaa0f76201b8b3ee64b7b1c5d5c6ccc5
- prep 1.0 release

diff -r 87fd9f34eaa0 -r 681db37a300c erlang/erldc/Makefile
--- a/erlang/erldc/Makefile	Sun May 22 20:55:57 2016 +0200
+++ b/erlang/erldc/Makefile	Thu Apr 19 18:54:47 2018 +0200
@@ -1,5 +1,5 @@
 # Be sure to 'make clean' after changing the version
-VERSION=0.9
+VERSION=1.0
 
 OUTPUTS = priv/erldc.so ebin/dyncall.beam ebin/erldc.app
 
diff -r 87fd9f34eaa0 -r 681db37a300c python/pydc/README.txt
--- a/python/pydc/README.txt	Sun May 22 20:55:57 2016 +0200
+++ b/python/pydc/README.txt	Thu Apr 19 18:54:47 2018 +0200
@@ -2,6 +2,7 @@
 (C) 2007-2016 Daniel Adler
 Dec 4, 2007: initial
 Mar 22,2016: update to dyncall 0.9, includes breaking sig char changes
+Apr 19,2018: update to dyncall 1.0
 
 
 BUILD/INSTALLATION
diff -r 87fd9f34eaa0 -r 681db37a300c python/pydc/setup.py
--- a/python/pydc/setup.py	Sun May 22 20:55:57 2016 +0200
+++ b/python/pydc/setup.py	Thu Apr 19 18:54:47 2018 +0200
@@ -7,7 +7,7 @@
 
 setup(
   name             = 'pydc'
-, version          = '0.9'
+, version          = '1.0'
 , author           = 'Daniel Adler'
 , author_email     = 'dadler@dyncall.org'
 , maintainer       = 'Daniel Adler'
diff -r 87fd9f34eaa0 -r 681db37a300c ruby/rbdc/rbdc.gemspec
--- a/ruby/rbdc/rbdc.gemspec	Sun May 22 20:55:57 2016 +0200
+++ b/ruby/rbdc/rbdc.gemspec	Thu Apr 19 18:54:47 2018 +0200
@@ -33,7 +33,7 @@
 	spec.summary               = 'foreign function interface for C calls'
 	spec.description           = 'Ruby interface to dyncall, allowing programmers to call C functions in shared libraries from ruby without writing any glue code at all (e.g. "l.load(\'/usr/lib/libm.so\'); puts \'pow(2.0, 10.0) = \' + l.call(:pow, \'dd)d\', 2.0, 10.0).to_s")'
 
-	spec.version               = '0.9.0'
+	spec.version               = '1.0.0'
 	spec.required_ruby_version = '>= 1.9.1'
 	spec.license               = 'ISC'
 
diff -r 87fd9f34eaa0 -r 681db37a300c shell/shdc/shdc.c
--- a/shell/shdc/shdc.c	Sun May 22 20:55:57 2016 +0200
+++ b/shell/shdc/shdc.c	Thu Apr 19 18:54:47 2018 +0200
@@ -26,7 +26,7 @@
 #include <stdio.h>
 #include <stdlib.h> /* needed on some platforms to make atof work _at_runtime_ */
 
-#define SHDC_VERSION "0.9"
+#define SHDC_VERSION "1.0"
 
 
 void usage(const char* s)