Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"mockzilla": "4.0.0",
"mockzilla-common": "4.0.0",
"mockzilla-management": "4.0.0",
"FlutterMockzilla/mockzilla_ui_mobile": "1.1.0",
"FlutterMockzilla/mockzilla_ui_mobile": "2.0.0",
"FlutterMockzilla/mockzilla": "4.0.0",
"FlutterMockzilla/mockzilla_android": "4.0.0",
"FlutterMockzilla/mockzilla_ios": "4.0.0",
"FlutterMockzilla/mockzilla_web": "2.0.1",
"FlutterMockzilla/mockzilla_platform_interface": "3.0.1",
"mockzilla-management-ui/mockzilla-mobile-ui": "1.1.0",
"mockzilla-management-ui/mockzilla-mobile-ui": "2.0.0",
"mockzilla-management-ui/mockzilla-desktop": "3.0.0"
}
12 changes: 12 additions & 0 deletions FlutterMockzilla/mockzilla_ui_mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [2.0.0](https://github.com/Apadmi-Engineering/Mockzilla/compare/flutter_mockzilla_ui_mobile-v1.1.0...flutter_mockzilla_ui_mobile-v2.0.0) (2026-09-23)


### ⚠ BREAKING CHANGES

* Remove freezed from platform interface package, this introduces name changes for undocumented classes.

### Features

* Bump minimum platform SDKs for Flutter plugins ([#794](https://github.com/Apadmi-Engineering/Mockzilla/issues/794)) ([887e4a2](https://github.com/Apadmi-Engineering/Mockzilla/commit/887e4a257576fe0aa0721a7109f924dc10c6ddf2))
* Remove freezed from platform interface package, this introduces name changes for undocumented classes. ([badf252](https://github.com/Apadmi-Engineering/Mockzilla/commit/badf2528d5009304544ab8b2843276d205276a1a))

## [1.1.0](https://github.com/Apadmi-Engineering/Mockzilla/compare/flutter_mockzilla_ui_mobile-v1.1.0-dev3...flutter_mockzilla_ui_mobile-v1.1.0) (2026-07-24)


Expand Down
2 changes: 1 addition & 1 deletion FlutterMockzilla/mockzilla_ui_mobile/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

group = "com.example.mockzilla_mobile_ui"
version = "1.1.0" // x-release-please-version
version = "2.0.0" // x-release-please-version

buildscript {
ext.kotlin_version = "2.4.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Pod::Spec.new do |s|
s.name = 'mockzilla_ui_mobile'
# x-release-please-start-version
s.version = '1.1.0'
s.version = '2.0.0'
# x-release-please-end
s.summary = 'The iOS implementation for the mockzilla mobile ui plugin.'
s.description = <<-DESC
Expand All @@ -26,6 +26,6 @@ The iOS implementation for the mockzilla mobile ui plugin.
# Since this Flutter wrapper is so thin it's deployed along with each Kotlin update so
# they share versions
# x-release-please-start-version
s.dependency 'SwiftMockzillaMobileUi', '1.1.0'
s.dependency 'SwiftMockzillaMobileUi', '2.0.0'
# x-release-please-end
end
2 changes: 1 addition & 1 deletion FlutterMockzilla/mockzilla_ui_mobile/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: mockzilla_ui_mobile
description: "Embedded UI for controlling the mockzilla server at runtime"
# x-release-please-start-version
version: 1.1.0
version: 2.0.0
# x-release-please-end
homepage: https://mockzilla.apadmi.dev/
repository: https://github.com/Apadmi-Engineering/Mockzilla
Expand Down
9 changes: 9 additions & 0 deletions mockzilla-management-ui/mockzilla-mobile-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [2.0.0](https://github.com/Apadmi-Engineering/Mockzilla/compare/mockzilla-mobile-ui-v1.1.0...mockzilla-mobile-ui-v2.0.0) (2026-09-23)


### Bug Fixes

* fix iOS build for mobile ui ([dade18b](https://github.com/Apadmi-Engineering/Mockzilla/commit/dade18b4fb65b664c33a17958dd9951a693844ff))
* publish empty javadoc jars instead of full Dokka HTML ([f6417f6](https://github.com/Apadmi-Engineering/Mockzilla/commit/f6417f62d3285f1ffe65f1cca195d63b947b8aec))
* stop killing global koin context ([#812](https://github.com/Apadmi-Engineering/Mockzilla/issues/812)) ([1f49af9](https://github.com/Apadmi-Engineering/Mockzilla/commit/1f49af91eaeaa985e40817c62fde9a1f5b6af521))

## [1.1.0](https://github.com/Apadmi-Engineering/Mockzilla/compare/mockzilla-mobile-ui-v1.1.0-dev3...mockzilla-mobile-ui-v1.1.0) (2026-07-24)

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kotlin {
explicitApi()

// Managed automatically by release-please PRs.
version = project.injectedVersion() ?: "1.1.0" // x-release-please-version
version = project.injectedVersion() ?: "2.0.0" // x-release-please-version

android {
namespace = "$group.mockzilla.mobile.ui"
Expand Down
Loading