diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b413e0767..28e5373ae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -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", diff --git a/dart/dotprompt/CHANGELOG.md b/dart/dotprompt/CHANGELOG.md index c55190f33..0634fac1f 100644 --- a/dart/dotprompt/CHANGELOG.md +++ b/dart/dotprompt/CHANGELOG.md @@ -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 diff --git a/dart/dotprompt/pubspec.yaml b/dart/dotprompt/pubspec.yaml index 0a7f70152..fcdc21049 100644 --- a/dart/dotprompt/pubspec.yaml +++ b/dart/dotprompt/pubspec.yaml @@ -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