diff --git a/CHANGELOG.md b/CHANGELOG.md index 33d29dd..78e76e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,40 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2025-07-28 + +### Changes + +--- + +Packages with breaking changes: + + - [`cherrypick_flutter` - `v1.1.2`](#cherrypick_flutter---v112) + +Packages with other changes: + + - [`cherrypick` - `v2.2.0`](#cherrypick---v220) + - [`cherrypick_annotations` - `v1.1.0`](#cherrypick_annotations---v110) + - [`cherrypick_generator` - `v1.1.0`](#cherrypick_generator---v110) + +Packages graduated to a stable release (see pre-releases prior to the stable version for changelog entries): + + - `cherrypick` - `v2.2.0` + - `cherrypick_annotations` - `v1.1.0` + - `cherrypick_flutter` - `v1.1.2` + - `cherrypick_generator` - `v1.1.0` + +--- + +#### `cherrypick_flutter` - `v1.1.2` + +#### `cherrypick` - `v2.2.0` + +#### `cherrypick_annotations` - `v1.1.0` + +#### `cherrypick_generator` - `v1.1.0` + + ## 2025-06-04 ### Changes diff --git a/cherrypick/CHANGELOG.md b/cherrypick/CHANGELOG.md index 15f399a..e73c2f5 100644 --- a/cherrypick/CHANGELOG.md +++ b/cherrypick/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.2.0 + + - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. + ## 2.2.0-dev.1 - **FIX**: fix warnings. diff --git a/cherrypick/pubspec.yaml b/cherrypick/pubspec.yaml index 2496e6e..17ad3af 100644 --- a/cherrypick/pubspec.yaml +++ b/cherrypick/pubspec.yaml @@ -1,6 +1,6 @@ name: cherrypick description: Cherrypick is a small dependency injection (DI) library for dart/flutter projects. -version: 2.2.0-dev.1 +version: 2.2.0 homepage: https://pese-git.github.io/cherrypick-site/ documentation: https://github.com/pese-git/cherrypick/wiki repository: https://github.com/pese-git/cherrypick diff --git a/cherrypick_annotations/CHANGELOG.md b/cherrypick_annotations/CHANGELOG.md index 3389253..ff8c937 100644 --- a/cherrypick_annotations/CHANGELOG.md +++ b/cherrypick_annotations/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.0 + + - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. + ## 1.1.0-dev.1 - **FEAT**: implement InjectGenerator. diff --git a/cherrypick_annotations/pubspec.yaml b/cherrypick_annotations/pubspec.yaml index 94a851b..d14fe70 100644 --- a/cherrypick_annotations/pubspec.yaml +++ b/cherrypick_annotations/pubspec.yaml @@ -1,7 +1,7 @@ name: cherrypick_annotations description: | Set of annotations for CherryPick dependency injection library. Enables code generation and declarative DI for Dart & Flutter projects. -version: 1.1.0-dev.1 +version: 1.1.0 documentation: https://github.com/pese-git/cherrypick/wiki repository: https://github.com/pese-git/cherrypick/cherrypick_annotations issue_tracker: https://github.com/pese-git/cherrypick/issues diff --git a/cherrypick_flutter/CHANGELOG.md b/cherrypick_flutter/CHANGELOG.md index ebded52..9d8c3a4 100644 --- a/cherrypick_flutter/CHANGELOG.md +++ b/cherrypick_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 + + - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. + ## 1.1.2-dev.1 - Update a dependency to the latest release. diff --git a/cherrypick_flutter/pubspec.yaml b/cherrypick_flutter/pubspec.yaml index b9ce513..59c5636 100644 --- a/cherrypick_flutter/pubspec.yaml +++ b/cherrypick_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: cherrypick_flutter description: "Flutter library that allows access to the root scope through the context using `CherryPickProvider`." -version: 1.1.2-dev.1 +version: 1.1.2 homepage: https://pese-git.github.io/cherrypick-site/ documentation: https://github.com/pese-git/cherrypick/wiki repository: https://github.com/pese-git/cherrypick @@ -13,7 +13,7 @@ environment: dependencies: flutter: sdk: flutter - cherrypick: ^2.2.0-dev.1 + cherrypick: ^2.2.0 dev_dependencies: flutter_test: diff --git a/cherrypick_generator/CHANGELOG.md b/cherrypick_generator/CHANGELOG.md index c02d9b9..e8cc273 100644 --- a/cherrypick_generator/CHANGELOG.md +++ b/cherrypick_generator/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.0 + + - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. + ## 1.1.0-dev.5 - **FEAT**: implement tryResolve via generate code. diff --git a/cherrypick_generator/pubspec.yaml b/cherrypick_generator/pubspec.yaml index fb359ce..5e956ac 100644 --- a/cherrypick_generator/pubspec.yaml +++ b/cherrypick_generator/pubspec.yaml @@ -2,7 +2,7 @@ name: cherrypick_generator description: | Source code generator for the cherrypick dependency injection system. Processes annotations to generate binding and module code for Dart & Flutter projects. -version: 1.1.0-dev.5 +version: 1.1.0 documentation: https://github.com/pese-git/cherrypick/wiki repository: https://github.com/pese-git/cherrypick/cherrypick_generator issue_tracker: https://github.com/pese-git/cherrypick/issues @@ -12,7 +12,7 @@ environment: # Add regular dependencies here. dependencies: - cherrypick_annotations: ^1.1.0-dev.1 + cherrypick_annotations: ^1.1.0 analyzer: ^7.0.0 dart_style: ^3.0.0 build: ^2.4.1