diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5063e..49186fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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). +## Version 0.6.0 - 2025-01-14 + +- Potentially BREAKING: Upgrades Mockable to 0.2.0. If you're using mockable in your project, this may require you to upgrade there as well. + ## Version 0.5.0 - 2025-01-09 ### Added diff --git a/Package.resolved b/Package.resolved index 37a291a..b4b5457 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,13 +1,13 @@ { - "originHash" : "f096aa74c5272b45b2915f473243f1b1b20c3641ce8c933b91e2bdbb7e5b01c8", + "originHash" : "38dcbeee72b24bdfa4a2996241d74854484c6c169c780ccbb848c5b91e1f16ce", "pins" : [ { "identity" : "maplibre-gl-native-distribution", "kind" : "remoteSourceControl", "location" : "https://github.com/maplibre/maplibre-gl-native-distribution.git", "state" : { - "revision" : "b84a0decbe9ca1caeff1402efdce71349c09d790", - "version" : "6.8.1" + "revision" : "3615e3cc81b09b78b58b183660815b0f36107b3b", + "version" : "6.10.0" } }, { @@ -24,8 +24,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/Kolos65/Mockable.git", "state" : { - "revision" : "da977ecb20974c4b1cf185f5fd38771b2d4674fb", - "version" : "0.0.10" + "revision" : "e1b311b01c11415099341eee49769185e965ac4c", + "version" : "0.2.0" } }, { @@ -33,8 +33,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-snapshot-testing", "state" : { - "revision" : "6d932a79e7173b275b96c600c86c603cf84f153c", - "version" : "1.17.4" + "revision" : "2e6a85b73fc14e27d7542165ae73b1a10516ca9a", + "version" : "1.17.7" } }, { @@ -45,6 +45,15 @@ "revision" : "2bc86522d115234d1f588efe2bcb4ce4be8f8b82", "version" : "510.0.3" } + }, + { + "identity" : "xctest-dynamic-overlay", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/xctest-dynamic-overlay", + "state" : { + "revision" : "a3f634d1a409c7979cabc0a71b3f26ffa9fc8af1", + "version" : "1.4.3" + } } ], "version" : 3 diff --git a/Package.swift b/Package.swift index 2dc7cd4..8b9ec7c 100644 --- a/Package.swift +++ b/Package.swift @@ -21,11 +21,11 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.8.1"), + .package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.10.0"), .package(url: "https://github.com/stadiamaps/maplibre-swift-macros.git", from: "0.0.5"), // Testing - .package(url: "https://github.com/Kolos65/Mockable.git", exact: "0.0.10"), - .package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.17.2"), + .package(url: "https://github.com/Kolos65/Mockable.git", from: "0.2.0"), + .package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.17.7"), ], targets: [ .target( @@ -68,7 +68,7 @@ let package = Package( name: "MapLibreSwiftUITests", dependencies: [ "MapLibreSwiftUI", - .product(name: "MockableTest", package: "Mockable"), + .product(name: "Mockable", package: "Mockable"), .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), ] ), diff --git a/Tests/MapLibreSwiftUITests/MapView/MapViewGestureTests.swift b/Tests/MapLibreSwiftUITests/MapView/MapViewGestureTests.swift index 047ee49..83a9c79 100644 --- a/Tests/MapLibreSwiftUITests/MapView/MapViewGestureTests.swift +++ b/Tests/MapLibreSwiftUITests/MapView/MapViewGestureTests.swift @@ -1,5 +1,5 @@ import MapLibre -import MockableTest +import Mockable import XCTest @testable import MapLibreSwiftUI diff --git a/Tests/MapLibreSwiftUITests/MapViewCoordinator/MapViewCoordinatorCameraTests.swift b/Tests/MapLibreSwiftUITests/MapViewCoordinator/MapViewCoordinatorCameraTests.swift index d0d68ee..b22830a 100644 --- a/Tests/MapLibreSwiftUITests/MapViewCoordinator/MapViewCoordinatorCameraTests.swift +++ b/Tests/MapLibreSwiftUITests/MapViewCoordinator/MapViewCoordinatorCameraTests.swift @@ -1,5 +1,5 @@ import CoreLocation -import MockableTest +import Mockable import XCTest @testable import MapLibreSwiftUI