-
Notifications
You must be signed in to change notification settings - Fork 157
chore: bump versions for release #889
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
Changes from all commits
34408a8
22f2495
7321831
06333b4
892e4a2
890f33b
3df9da2
d73c8cc
17918f1
ca9cd96
ff788e3
633476e
b4e598b
f0fdac9
7b62372
5972dd9
bbb8af1
fcc1a47
05c7ea3
7de4429
41d82b7
22a63f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,10 @@ | ||
| # `a2ui_core` Changelog | ||
|
|
||
| ## 0.0.1 (in progress) | ||
| ## 0.1.0 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not think we should release this package while we did not resolve the question of technologies: #857 (comment) Let's keep it 'in progress'. |
||
|
|
||
| - Initial version implemented based on the [A2UI v0.9 renderer guide](https://github.com/google/A2UI/blob/main/specification/v0_9/docs/renderer_guide.md). | ||
| - Core models for A2UI protocol (Catalog, Component, DataModel, Messages). | ||
| - Rendering support and data binding. | ||
| - Reactive state management and notifiers. | ||
| - Expression processing and basic function support. | ||
|
|
||
| - Initial version. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |
| name: a2ui_core | ||
| description: Core package for A2UI protocol. | ||
| repository: https://github.com/flutter/genui/tree/main/packages/a2ui_core | ||
| version: 0.0.1-dev001 | ||
| version: 0.1.0 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's keep it 'dev': we do not want people to take dependency while the question of technologies is not resolved.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Created the alternative PR to make things faster: #890 @jacobsimionato, can you review, and, if looks good, merge PR, and release the packages? |
||
|
|
||
| resolution: workspace | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
genuiandgenui_a2apackages (now at version0.9.0) require a minimum Dart SDK version of3.10.0(as specified in their respectivepubspec.yamlfiles). However, theenvironmentsection of this file (line 13) still specifiessdk: ^3.9.2. This mismatch will cause a version solver error when runningflutter pub get. Please update the SDK constraint in theenvironmentsection to">=3.10.0 <4.0.0"to match the requirements of the updated dependencies.