Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"python/handlebarrz": "0.1.8",
"go": "0.2.0",
"java": "0.1.0",
"dart/dotprompt": "0.0.1",
"dart/dotprompt": "0.0.2",
"bazel/rules_dart": "0.1.0",
"bazel/rules_flutter": "0.1.0",
"rs": "0.1.0",
Expand Down
15 changes: 15 additions & 0 deletions dart/dotprompt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

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

## [0.0.2](https://github.com/google/dotprompt/compare/dotprompt-dart-0.0.1...dotprompt-dart-0.0.2) (2026-05-02)


### Features

* **dart:** add pub.dev publishing support ([#527](https://github.com/google/dotprompt/issues/527)) ([d70752b](https://github.com/google/dotprompt/commit/d70752b9dfbb86063f0b5cf0e4158d8cdd14bba7))
* **dart:** dotprompt and handlebars implementation ([#509](https://github.com/google/dotprompt/issues/509)) ([3b2982c](https://github.com/google/dotprompt/commit/3b2982c6f8dfaee84ca120da93a50bc92940ee69))
* **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))
* **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))


### Bug Fixes

* 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))

## [0.0.1] - 2026-01-30

### Added
Expand Down
34 changes: 3 additions & 31 deletions dart/dotprompt/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,53 +1,25 @@
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0

name: dotprompt
description: >-
Dart implementation of Dotprompt, an executable prompt template file format
for Generative AI. This library provides parsing, rendering, and management
of .prompt files with YAML frontmatter and Handlebars templating.
version: 0.0.1
for Generative AI. This library provides parsing, rendering, and management of
.prompt files with YAML frontmatter and Handlebars templating.
version: 0.0.2
license: Apache-2.0
homepage: https://github.com/google/dotprompt
repository: https://github.com/google/dotprompt
documentation: https://google.github.io/dotprompt/

environment:
sdk: ^3.5.0

dependencies:
# Handlebars templating (our pure Dart implementation)
handlebars_dart: ^0.0.1
# Meta annotations
meta: ^1.15.0
# YAML parsing for frontmatter
yaml: ^3.1.2

# Local development overrides (not included in published package).
dependency_overrides:
handlebars_dart:
path: ../handlebars_dart

dev_dependencies:
build_runner: ^2.4.13
# Code coverage
coverage: ^1.11.0
# Linting rules
lints: ^5.1.1
# Mocking
mockito: ^5.4.4
# Testing framework
test: ^1.25.8
Loading