Skip to content
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
14 changes: 7 additions & 7 deletions llms.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Ack - Schema Validation Library for Dart

> A schema validation library for Dart and Flutter with a fluent API, code generation via `@AckType` and `@AckModel` annotations, and Dart 3 extension types for zero-cost type-safe wrappers over validated data. Version 1.0.0-beta.10.
> A schema validation library for Dart and Flutter with a fluent API, code generation via `@AckType` and `@AckModel` annotations, and Dart 3 extension types for zero-cost type-safe wrappers over validated data. Version 1.0.0-beta.11.

## Overview

Ack (short for "acknowledge") is a schema validation library for Dart and Flutter that enables data validation with a simple, fluent API. Version 1.0.0-beta.10 is the current published baseline.
Ack (short for "acknowledge") is a schema validation library for Dart and Flutter that enables data validation with a simple, fluent API. Version 1.0.0-beta.11 is the current published baseline.

**Repository**: https://github.com/btwld/ack
**Documentation**: https://docs.page/btwld/ack
Expand Down Expand Up @@ -819,11 +819,11 @@ sealed class SchemaResult<T extends Object> {
```yaml
# pubspec.yaml
dependencies:
ack: ^1.0.0-beta.10
ack_annotations: ^1.0.0-beta.10
ack: ^1.0.0-beta.11
ack_annotations: ^1.0.0-beta.11

dev_dependencies:
ack_generator: ^1.0.0-beta.10
ack_generator: ^1.0.0-beta.11
build_runner: ^2.4.0
```

Expand Down Expand Up @@ -964,7 +964,7 @@ Converts Ack schemas to Firebase AI Schema format for structured output generati
```yaml
# pubspec.yaml
dependencies:
ack_firebase_ai: ^1.0.0-beta.10
ack_firebase_ai: ^1.0.0-beta.11
```

```dart
Expand Down Expand Up @@ -997,7 +997,7 @@ Converts Ack schemas to json_schema_builder format for JSON Schema Draft 2020-12
```yaml
# pubspec.yaml
dependencies:
ack_json_schema_builder: ^1.0.0-beta.10
ack_json_schema_builder: ^1.0.0-beta.11
```

```dart
Expand Down
4 changes: 4 additions & 0 deletions packages/ack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-beta.11

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.11) for details.

## 1.0.0-beta.10

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.10) for details.
Expand Down
2 changes: 1 addition & 1 deletion packages/ack/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ack
description: A simple validation library for Dart
version: 1.0.0-beta.10
version: 1.0.0-beta.11
repository: https://github.com/btwld/ack
issue_tracker: https://github.com/btwld/ack/issues
homepage: https://docs.page/btwld/ack
Expand Down
4 changes: 4 additions & 0 deletions packages/ack_annotations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-beta.11

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.11) for details.

## 1.0.0-beta.10

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.10) for details.
Expand Down
2 changes: 1 addition & 1 deletion packages/ack_annotations/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ack_annotations
description: Annotations for Ack schema code generation
version: 1.0.0-beta.10
version: 1.0.0-beta.11
repository: https://github.com/btwld/ack
resolution: workspace

Expand Down
4 changes: 4 additions & 0 deletions packages/ack_firebase_ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-beta.11

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.11) for details.

## 1.0.0-beta.10

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.10) for details.
Expand Down
4 changes: 2 additions & 2 deletions packages/ack_firebase_ai/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ack_firebase_ai
description: Firebase AI (Gemini) schema converter for ACK validation library
version: 1.0.0-beta.10
version: 1.0.0-beta.11
repository: https://github.com/btwld/ack
issue_tracker: https://github.com/btwld/ack/issues
resolution: workspace
Expand All @@ -12,7 +12,7 @@ environment:
dependencies:
flutter:
sdk: flutter
ack: ^1.0.0-beta.10
ack: ^1.0.0-beta.11
firebase_ai: '>=3.4.0 <5.0.0' # Tested with 3.4.0, compatible with 3.x-4.x
meta: ^1.15.0

Expand Down
4 changes: 4 additions & 0 deletions packages/ack_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-beta.11

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.11) for details.

## 1.0.0-beta.10

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.10) for details.
Expand Down
6 changes: 3 additions & 3 deletions packages/ack_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ack_generator
description: Code generator for Ack schema validation models
version: 1.0.0-beta.10
version: 1.0.0-beta.11
repository: https://github.com/btwld/ack
issue_tracker: https://github.com/btwld/ack/issues
resolution: workspace
Expand All @@ -16,8 +16,8 @@ dependencies:
code_builder: ^4.10.0

# Ack packages (versions are overridden locally by Melos)
ack: ^1.0.0-beta.10
ack_annotations: ^1.0.0-beta.10
ack: ^1.0.0-beta.11
ack_annotations: ^1.0.0-beta.11

# Utilities
collection: ^1.18.0
Expand Down
4 changes: 4 additions & 0 deletions packages/ack_json_schema_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-beta.11

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.11) for details.

## 1.0.0-beta.10

* See [release notes](https://github.com/btwld/ack/releases/tag/v1.0.0-beta.10) for details.
Expand Down
4 changes: 2 additions & 2 deletions packages/ack_json_schema_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ack_json_schema_builder
description: JSON Schema Builder converter for ACK validation library
version: 1.0.0-beta.10
version: 1.0.0-beta.11
repository: https://github.com/btwld/ack
issue_tracker: https://github.com/btwld/ack/issues
resolution: workspace
Expand All @@ -9,7 +9,7 @@ environment:
sdk: '>=3.8.0 <4.0.0'

dependencies:
ack: ^1.0.0-beta.10
ack: ^1.0.0-beta.11
json_schema_builder: ^0.1.3
meta: ^1.15.0

Expand Down
Loading