CountryCodePickerCompose

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.2] - 2024-12-01

๐ŸŽ‰ Major Updates

This release focuses on fixing critical bugs, improving compatibility with the latest Android ecosystem, and enhancing code quality.

โœจ Added

๐Ÿ› Fixed

โฌ†๏ธ Updated

๐Ÿ”ง Changed

๐Ÿ—‘๏ธ Removed

๐Ÿงน Code Quality

๐Ÿ“ Documentation

โš ๏ธ Breaking Changes

None - This release maintains backward compatibility. All API changes are additive or internal improvements.

๐Ÿ”„ Migration Guide

If upgrading from 0.1.x:

  1. Update Kotlin version to 2.0+ in your project
  2. Add Compose Compiler plugin if not already present:
    plugins {
        id("org.jetbrains.kotlin.plugin.compose") version "2.1.0"
    }
    
  3. Use Compose BOM 2024.08.00 or later for best compatibility
  4. No code changes needed - Your existing implementation will work as-is

๐Ÿ“ฆ Minimum Requirements

๐Ÿ™ Acknowledgments


How to Update

Update your dependency in build.gradle.kts:

dependencies {
    implementation("com.github.ahmmedrejowan:CountryCodePickerCompose:0.2")
}