diff --git a/copy_with_extension/CHANGELOG.md b/copy_with_extension/CHANGELOG.md index 4327389..d8e3e2a 100644 --- a/copy_with_extension/CHANGELOG.md +++ b/copy_with_extension/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.7 Extension name fix + +* Creates a unique extension name for each class. + ## 1.0.6 Minor corrections * Minor metadata and description corractions. diff --git a/copy_with_extension/README.md b/copy_with_extension/README.md index ad26916..ae6d729 100644 --- a/copy_with_extension/README.md +++ b/copy_with_extension/README.md @@ -1,3 +1,5 @@ [![Pub Package](https://img.shields.io/pub/v/copy_with_extension.svg)](https://pub.dev/packages/copy_with_extension) -Defines the annotation used by [copy_with_extension_gen](https://pub.dev/packages/copy_with_extension_gen) to generate `copyWith` extensions. \ No newline at end of file +Defines the annotation used by [copy_with_extension_gen](https://pub.dev/packages/copy_with_extension_gen) to generate `copyWith` extensions. + +For more info on this package check out [my blog article](https://www.alexander-kirsch.com/blog/dart-extensions/). \ No newline at end of file diff --git a/copy_with_extension/pubspec.yaml b/copy_with_extension/pubspec.yaml index a48d38f..7b49371 100644 --- a/copy_with_extension/pubspec.yaml +++ b/copy_with_extension/pubspec.yaml @@ -1,5 +1,5 @@ name: copy_with_extension -version: 1.0.6 +version: 1.0.7 description: Annotation for generating `copyWith` extensions code using `copy_with_extension_gen`. homepage: https://github.com/numen31337/copy_with_extension/tree/master/copy_with_extension repository: https://github.com/numen31337/copy_with_extension diff --git a/copy_with_extension_gen/CHANGELOG.md b/copy_with_extension_gen/CHANGELOG.md index 89b0a26..3692fc1 100644 --- a/copy_with_extension_gen/CHANGELOG.md +++ b/copy_with_extension_gen/CHANGELOG.md @@ -1,7 +1,11 @@ +## 1.0.7 Extension name fix + +* Creates a unique extension name for each class. + ## 1.0.6 Minor corrections * Minor metadata and description corractions. ## 1.0.0 Initial release -* Lets you generate a `copyWith` extension for objects annoteted with `@CopyWith()` \ No newline at end of file +* Lets you generate a `copyWith` extension for objects annoteted with `@CopyWith()`. \ No newline at end of file diff --git a/copy_with_extension_gen/README.md b/copy_with_extension_gen/README.md index aa9c183..fcdf4b9 100644 --- a/copy_with_extension_gen/README.md +++ b/copy_with_extension_gen/README.md @@ -1,6 +1,6 @@ [![Pub Package](https://img.shields.io/pub/v/copy_with_extension_gen.svg)](https://pub.dev/packages/copy_with_extension_gen) -Provides [Dart Build System](https://pub.dev/packages/build) builder for generating `copyWith` extensions for classes annotated with [copy_with_extension](https://pub.dev/packages/copy_with_extension). +Provides [Dart Build System](https://pub.dev/packages/build) builder for generating `copyWith` extensions for classes annotated with [copy_with_extension](https://pub.dev/packages/copy_with_extension). For more info on this package check out [my blog article](https://www.alexander-kirsch.com/blog/dart-extensions/). ## Usage diff --git a/copy_with_extension_gen/pubspec.yaml b/copy_with_extension_gen/pubspec.yaml index 1428433..50a907a 100644 --- a/copy_with_extension_gen/pubspec.yaml +++ b/copy_with_extension_gen/pubspec.yaml @@ -1,5 +1,5 @@ name: copy_with_extension_gen -version: 1.0.6 +version: 1.0.7 description: Automatically generating `copyWith` extensions code for classes with `@CopyWith()` annotation. repository: https://github.com/numen31337/copy_with_extension homepage: https://github.com/numen31337/copy_with_extension/tree/master/copy_with_extension_gen