Changed the "create_gds_library" command to use the new command
option "gds library" in magic, so that the top level with the
example cells is not saved into the GDS output (which can cause
problems with some tools).
diff --git a/VERSION b/VERSION
index 66c4c22..7ee7020 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.9
+1.0.10
diff --git a/common/foundry_install.py b/common/foundry_install.py
index 2067663..52c1041 100755
--- a/common/foundry_install.py
+++ b/common/foundry_install.py
@@ -613,7 +613,8 @@
                 # Could properly make space for the cell here. . . 
                 print('box move e 200', file=ofile)
                                 
-            print('puts stdout "Writing GDS file ' + destlib + '"', file=ofile)
+            print('puts stdout "Writing GDS library ' + destlib + '"', file=ofile)
+	    print('gds library', file=ofile)
             print('gds write ' + destlib, file=ofile)
             print('puts stdout "Done."', file=ofile)
             print('quit -noprompt', file=ofile)