Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Corrected version number in enum doc note #209

Merged
merged 3 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/06-concepts/02-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ values:

:::info

It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 2 of Serverpod.
It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 3 of Serverpod.
christerswahn marked this conversation as resolved.
Show resolved Hide resolved

:::

Expand Down
2 changes: 1 addition & 1 deletion docs/08-upgrading/03-upgrade-to-two.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ factory ClassName.fromJson(

## Deprecation Notice for `SerializableEntity`

The `SerializableEntity` class is deprecated and will be removed in version 2.1. Please implement the `SerializableModel` interface instead for creating serializable models.
The `SerializableEntity` class is deprecated and will be removed in version 3. Please implement the `SerializableModel` interface instead for creating serializable models.

### Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-1.2.0/05-concepts/02-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ values:

:::info

It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 2 of Serverpod.
It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 3 of Serverpod.

:::

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.0.0/05-concepts/02-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ values:

:::info

It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 2 of Serverpod.
It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 3 of Serverpod.

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ factory ClassName.fromJson(

## Deprecation Notice for `SerializableEntity`

The `SerializableEntity` class is deprecated and will be removed in version 2.1. Please implement the `SerializableModel` interface instead for creating serializable models.
The `SerializableEntity` class is deprecated and will be removed in version 3. Please implement the `SerializableModel` interface instead for creating serializable models.

### Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.1.0/06-concepts/02-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ values:

:::info

It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 2 of Serverpod.
It's recommended to always set `serialized` to `byName` in any new Enum models, as this is less fragile and will be changed to the default setting in version 3 of Serverpod.

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ factory ClassName.fromJson(

## Deprecation Notice for `SerializableEntity`

The `SerializableEntity` class is deprecated and will be removed in version 2.1. Please implement the `SerializableModel` interface instead for creating serializable models.
The `SerializableEntity` class is deprecated and will be removed in version 3. Please implement the `SerializableModel` interface instead for creating serializable models.

### Migration Guide

Expand Down
Loading