From f9271d2554db7c2db0218797141c3760f7c7522e Mon Sep 17 00:00:00 2001 From: Remi Rousselet Date: Tue, 16 Nov 2021 22:58:05 +0100 Subject: [PATCH] Bump to 1.0.0 --- packages/freezed/CHANGELOG.md | 11 +++++++++++ packages/freezed/pubspec.yaml | 4 ++-- packages/freezed_annotation/CHANGELOG.md | 4 ++++ packages/freezed_annotation/pubspec.yaml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/packages/freezed/CHANGELOG.md b/packages/freezed/CHANGELOG.md index 7806a5c8..eaacc954 100644 --- a/packages/freezed/CHANGELOG.md +++ b/packages/freezed/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.0.0 + +Freezed is now stable + +This release also: + +- reverted an involuntary change of how union types were de/serialized, breaking + existing code. +- fixed an issue with generic typedefs (thanks to @SunlightBro #552) +- fixed a potential null exception + # 0.15.1+1 - Fixed a bug where the generated code for serializable unions with a base class was invalid diff --git a/packages/freezed/pubspec.yaml b/packages/freezed/pubspec.yaml index 8c3b6a68..5b759cd3 100644 --- a/packages/freezed/pubspec.yaml +++ b/packages/freezed/pubspec.yaml @@ -2,7 +2,7 @@ name: freezed description: > Code generation for immutable classes that has a simple syntax/API without compromising on the features. -version: 0.15.1+1 +version: 1.0.0 homepage: https://github.com/rrousselGit/freezed environment: @@ -15,7 +15,7 @@ dependencies: collection: ^1.15.0 meta: ^1.7.0 source_gen: ^1.1.1 - freezed_annotation: ^0.15.0 + freezed_annotation: ^1.0.0 dev_dependencies: json_serializable: ^6.0.1 diff --git a/packages/freezed_annotation/CHANGELOG.md b/packages/freezed_annotation/CHANGELOG.md index 5a847f5a..8a69675a 100644 --- a/packages/freezed_annotation/CHANGELOG.md +++ b/packages/freezed_annotation/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.0.0 + +freezed_annotation is now stable + # 0.15.0 - **Breaking** Changed the syntax for `@With` and `@Implements` to use a generic annotation. diff --git a/packages/freezed_annotation/pubspec.yaml b/packages/freezed_annotation/pubspec.yaml index 4987e845..85442f1e 100644 --- a/packages/freezed_annotation/pubspec.yaml +++ b/packages/freezed_annotation/pubspec.yaml @@ -2,7 +2,7 @@ name: freezed_annotation description: > Annotations for the freezed code-generator. This package does nothing without freezed too. -version: 0.15.0 +version: 1.0.0 homepage: https://github.com/rrousselGit/freezed environment: