From 758ad4c2dee47f5e724f2d9d17f767eca1508e71 Mon Sep 17 00:00:00 2001 From: Dmitriy Gorbunov Date: Mon, 15 Jan 2024 02:38:36 +0300 Subject: [PATCH] Release version 1.0.0-alpha.12. --- CHANGELOG.md | 6 ++++++ plugins/src/main/kotlin/me/dmdev/premo/Premo.kt | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5423013..793eb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.0.0-alpha.12 / 15.01.2024 +- Removed `PmDescription` and `PmParams`. Instead, use `PmArgs` to pass serializable arguments to the `PresentationModel`. +- Added `NoPmStateSaver` and `NoPmStateSaverFactory`. +- Added `oldState` parameter to `PmLifecycle.Observer` +- Kotlin is updated to 1.9.21. + # 1.0.0-alpha.11 / 29.08.2023 - Published new module: `premo-navigation-compose`. - Removed `showForResult` from `DialogNavigator` because this way of waiting the result is not persistent. diff --git a/plugins/src/main/kotlin/me/dmdev/premo/Premo.kt b/plugins/src/main/kotlin/me/dmdev/premo/Premo.kt index ed9d99d..45d93fe 100644 --- a/plugins/src/main/kotlin/me/dmdev/premo/Premo.kt +++ b/plugins/src/main/kotlin/me/dmdev/premo/Premo.kt @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2020-2023 Dmitriy Gorbunov (dmitriy.goto@gmail.com) + * Copyright (c) 2020-2024 Dmitriy Gorbunov (dmitriy.goto@gmail.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -27,7 +27,7 @@ package me.dmdev.premo object Premo { const val groupId = "me.dmdev.premo" - const val version = "1.0.0-alpha.11" + const val version = "1.0.0-alpha.12" const val description = "Premo helps to implement the presentation layer and share it on Android, iOS, Desktop and Web." const val url = "https://github.com/dmdevgo/Premo"