Skip to content

Commit f8ede8a

Browse files
committed
chore(release): dotprompt-dart 0.0.2
1 parent d70752b commit f8ede8a

File tree

3 files changed

+19
-36
lines changed

3 files changed

+19
-36
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"python/handlebarrz": "0.1.8",
55
"go": "0.2.0",
66
"java": "0.1.0",
7-
"dart/dotprompt": "0.0.1",
7+
"dart/dotprompt": "0.0.2",
88
"bazel/rules_dart": "0.1.0",
99
"bazel/rules_flutter": "0.1.0",
1010
"rs": "0.1.0",

dart/dotprompt/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to dotprompt-dart will be documented in this file.
44

5+
## [0.0.2](https://github.com/google/dotprompt/compare/dotprompt-dart-0.0.1...dotprompt-dart-0.0.2) (2026-02-19)
6+
7+
8+
### Features
9+
10+
* **dart:** add pub.dev publishing support ([#527](https://github.com/google/dotprompt/issues/527)) ([d70752b](https://github.com/google/dotprompt/commit/d70752b9dfbb86063f0b5cf0e4158d8cdd14bba7))
11+
* **dart:** dotprompt and handlebars implementation ([#509](https://github.com/google/dotprompt/issues/509)) ([3b2982c](https://github.com/google/dotprompt/commit/3b2982c6f8dfaee84ca120da93a50bc92940ee69))
12+
* **rules_dart,rules_flutter:** enhance Bazel rules with workers and linting fixes ([#513](https://github.com/google/dotprompt/issues/513)) ([5369b40](https://github.com/google/dotprompt/commit/5369b4046eea9805f7dbcf026434035d55e2b095))
13+
* **rules_dart:** first-class Bazel ruleset with RBE, IDE aspects, and version conflict detection ([#512](https://github.com/google/dotprompt/issues/512)) ([1624c75](https://github.com/google/dotprompt/commit/1624c7546deac1969a836dc83d2c3531a8e66ef0))
14+
15+
16+
### Bug Fixes
17+
18+
* add Apache-2.0 license metadata to all packages ([#528](https://github.com/google/dotprompt/issues/528)) ([c76c663](https://github.com/google/dotprompt/commit/c76c6639fb77b39ef5b45a1a8dbebacc4c9bd422))
19+
520
## [0.0.1] - 2026-01-30
621

722
### Added

dart/dotprompt/pubspec.yaml

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,29 @@
1-
# Copyright 2026 Google LLC
2-
#
3-
# Licensed under the Apache License, Version 2.0 (the "License");
4-
# you may not use this file except in compliance with the License.
5-
# You may obtain a copy of the License at
6-
#
7-
# http://www.apache.org/licenses/LICENSE-2.0
8-
#
9-
# Unless required by applicable law or agreed to in writing, software
10-
# distributed under the License is distributed on an "AS IS" BASIS,
11-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
# See the License for the specific language governing permissions and
13-
# limitations under the License.
14-
#
15-
# SPDX-License-Identifier: Apache-2.0
16-
171
name: dotprompt
182
description: >-
193
Dart implementation of Dotprompt, an executable prompt template file format
20-
for Generative AI. This library provides parsing, rendering, and management
21-
of .prompt files with YAML frontmatter and Handlebars templating.
22-
version: 0.0.1
4+
for Generative AI. This library provides parsing, rendering, and management of
5+
.prompt files with YAML frontmatter and Handlebars templating.
6+
version: 0.0.2
237
license: Apache-2.0
248
homepage: https://github.com/google/dotprompt
259
repository: https://github.com/google/dotprompt
2610
documentation: https://google.github.io/dotprompt/
27-
2811
environment:
2912
sdk: ^3.5.0
30-
3113
dependencies:
32-
# YAML parsing for frontmatter
3314
collection: ^1.18.0
34-
# Crypto for hashing
3515
crypto: ^3.0.6
36-
# Handlebars templating (our pure Dart implementation)
3716
handlebarrz: ^0.0.1
38-
# JSON schema support
3917
json_schema: ^5.2.2
40-
# Meta annotations
4118
meta: ^1.15.0
42-
# Path utilities
4319
path: ^1.9.0
44-
# YAML parsing for frontmatter
4520
yaml: ^3.1.2
46-
47-
# Local development overrides (not included in published package).
4821
dependency_overrides:
4922
handlebarrz:
5023
path: ../handlebarrz
51-
5224
dev_dependencies:
5325
build_runner: ^2.4.13
54-
# Code coverage
5526
coverage: ^1.11.0
56-
# Linting rules
5727
lints: ^5.1.1
58-
# Mocking
5928
mockito: ^5.4.4
60-
# Testing framework
6129
test: ^1.25.8

0 commit comments

Comments
 (0)