diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/DiffUtils.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/DiffUtils.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/DiffUtils.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/DiffUtils.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/Change.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/Change.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/Change.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/Change.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/DiffAlgorithm.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/DiffAlgorithm.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/DiffAlgorithm.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/DiffAlgorithm.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/DiffAlgorithmListener.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/DiffAlgorithmListener.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/DiffAlgorithmListener.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/DiffAlgorithmListener.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/myers/MyersDiff.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiff.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/myers/MyersDiff.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiff.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/myers/PathNode.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/PathNode.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/algorithm/myers/PathNode.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/PathNode.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Chunk.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Chunk.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Chunk.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Chunk.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Delta.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Delta.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Delta.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Delta.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Patch.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Patch.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/patch/Patch.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Patch.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/patch/PatchFailedException.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/patch/PatchFailedException.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/patch/PatchFailedException.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/patch/PatchFailedException.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/text/DiffRow.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/text/DiffRow.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/text/DiffRow.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/text/DiffRow.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/text/DiffRowGenerator.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/text/DiffRowGenerator.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/text/DiffRowGenerator.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/text/DiffRowGenerator.kt diff --git a/src/commonMain/kotlin/com/github/petertrr/diffutils/text/StringUtils.kt b/src/commonMain/kotlin/io/github/petertrr/diffutils/text/StringUtils.kt similarity index 100% rename from src/commonMain/kotlin/com/github/petertrr/diffutils/text/StringUtils.kt rename to src/commonMain/kotlin/io/github/petertrr/diffutils/text/StringUtils.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/DiffUtilsTest.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/DiffUtilsTest.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/DiffUtilsTest.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/DiffUtilsTest.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/algorithm/myers/MyersDiffTest.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiffTest.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/algorithm/myers/MyersDiffTest.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiffTest.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/patch/PatchTest.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/patch/PatchTest.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/patch/PatchTest.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/patch/PatchTest.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/text/DiffRowGeneratorTest.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/text/DiffRowGeneratorTest.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/text/DiffRowGeneratorTest.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/text/DiffRowGeneratorTest.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/text/StringUtilsTest.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/text/StringUtilsTest.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/text/StringUtilsTest.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/text/StringUtilsTest.kt diff --git a/src/commonTest/kotlin/com/github/petertrr/diffutils/utils/DeltaUtils.kt b/src/commonTest/kotlin/io/github/petertrr/diffutils/utils/DeltaUtils.kt similarity index 100% rename from src/commonTest/kotlin/com/github/petertrr/diffutils/utils/DeltaUtils.kt rename to src/commonTest/kotlin/io/github/petertrr/diffutils/utils/DeltaUtils.kt