Skip to content

Commit 7df55bc

Browse files
committed
chore(release): fr_acdd 0.2.0
1 parent c4bfda7 commit 7df55bc

4 files changed

Lines changed: 48 additions & 1 deletion

File tree

.github/workflows/publish-acdd.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# .github/workflows/publish.yml
2+
name: Publish pub.dev fr_acdd
3+
4+
on:
5+
push:
6+
tags:
7+
# must align with the tag-pattern configured on pub.dev, often just replace
8+
# {{version}} with [0-9]+.[0-9]+.[0-9]+
9+
- 'acdd-v[0-9]+.[0-9]+.[0-9]+' # tag-pattern on pub.dev: 'acdd-v{{version}}'
10+
# If you prefer tags like '1.2.3', without the 'v' prefix, then use:
11+
# - '[0-9]+.[0-9]+.[0-9]+' # tag-pattern on pub.dev: '{{version}}'
12+
# If your repository contains multiple packages consider a pattern like:
13+
# - 'my_package_name-v[0-9]+.[0-9]+.[0-9]+'
14+
15+
# Publish using the reusable workflow from dart-lang.
16+
jobs:
17+
publish:
18+
permissions:
19+
id-token: write # Required for authentication using OIDC
20+
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
21+
with:
22+
working-directory: packages/fr_acdd

packages/fr_acdd/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.2.0 2026-06-06
2+
* feat: add FrAcddFreezed preset
3+
* feat: tighten freezed dto contract
4+
* feat: add fr_acdd protobuf extractor

packages/fr_acdd/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Hu-Wentao
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

packages/fr_acdd/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fr_acdd
22
description: "Contract annotations and protobuf extraction for FlowR contract-first pages."
3-
version: 0.1.0
3+
version: 0.2.0
44
repository: "https://github.com/Hu-Wentao/flowr"
55

66
environment:

0 commit comments

Comments
 (0)