diff --git a/plotid/__init__.py b/plotid/__init__.py
index f2fe64e699af870ad9993f356f8df0c2804b5229..b9b886cfe7247b5ffb940f20a022b85dff449a5f 100644
--- a/plotid/__init__.py
+++ b/plotid/__init__.py
@@ -10,5 +10,5 @@ research data, the plot is based on. Additionally, the script that created the
 plot will also be copied to the directory.
 """
 
-__version__ = '0.1.1'
+__version__ = '0.1.2'
 __author__ = 'Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt'
diff --git a/plotid/filecompare.py b/plotid/filecompare.py
deleted file mode 100644
index 2ccc81a36933b07cbcf6897a8112843e7f7c02a2..0000000000000000000000000000000000000000
--- a/plotid/filecompare.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Compare if data already exists in published folder to avoid redundancy."""
-
-# Test des Moduls filecmp — File and Directory Comparisons
-
-import filecmp
-
-a = filecmp.cmp("2.py", "test_git.py")
-print(a)
diff --git a/plotid/hdf5_external_link.py b/plotid/hdf5_external_link.py
deleted file mode 100644
index 09b96fa9ccd5b9fa84faa19826410a29ac413701..0000000000000000000000000000000000000000
--- a/plotid/hdf5_external_link.py
+++ /dev/null
@@ -1,11 +0,0 @@
-"""Handling of hdf5 data files."""
-
-import h5py
-
-# Shows how to create an externalLink (symbolic) to a hdf5 File
-# Documentation available at:
-#    https://docs.h5py.org/en/stable/high/group.html#external-links
-myfile = h5py.File('./example.h5', 'w')
-myfile['ext link'] = h5py.ExternalLink("testdata_2.h5", "/")
-
-myfile.close()