diff --git a/CHANGELOG.md b/CHANGELOG.md
index b88389685ff678a46794f8f4ac73997967ecdd52..c78d196f36797d4c5138ce99a18d4bbcccb90fb4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [Unreleased] ##
+
+### Added ###
+
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+
 ## [0.1.0] ##
 
 ### Added ###
diff --git a/end-to-end-tests/test_crawler.py b/end-to-end-tests/test_crawler.py
index 66e73a6b77acc7249d25cd96147ab053f3422139..b507584257e542436675ec0734fa419736ab678c 100644
--- a/end-to-end-tests/test_crawler.py
+++ b/end-to-end-tests/test_crawler.py
@@ -24,6 +24,7 @@ from pathlib import Path
 from ruqad.crawler import trigger_crawler
 
 DATADIR = Path(__file__).parent / "data" / "crawler_data"
+BROKEN_DATADIR = Path(__file__).parent / "data" / "broken_crawler_data"
 
 
 def test_crawl(capsys):
@@ -63,3 +64,14 @@ def test_crawl(capsys):
         assert type(qc[d].get_property("numPassingChecks").value) == int
         assert qc[d].get_property("numTotalChecks").value == total
         assert qc[d].get_property("numPassingChecks").value == passed
+#
+#
+# def test_broken_metadata():
+#     print(f"\nData directory: {BROKEN_DATADIR}")
+#     print(os.listdir(BROKEN_DATADIR))
+#
+#     retval, ent_qc = trigger_crawler(os.fspath(BROKEN_DATADIR))
+#
+#     # stdout, stderr = capsys.readouterr()
+#
+#     assert not retval
diff --git a/pyproject.toml b/pyproject.toml
index e917328584bee4b8432ecad76b32baa463528635..7b280af375a61968ad0e335d1f5abc1dbe453aae 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
 [project]
 name = "ruqad"
 description = "Quality assured data integration from Kadi to LinkAhead."
-version = "0.1.0"
+version = "0.1.1"
 readme = "README.md"
 license = {file = "LICENSE"}
 authors = [