Skip to content

Commit 7deab18

Browse files
author
Nguyễn Tuấn Việt
committed
feat: release v1.1.3 — fix pub.dev repository verification
Remove publish_to: none from all sub-package pubspec.yaml files. pub.dev clones the repo to verify packages and fails if it sees publish_to: none, causing a 10-point deduction. With this removed, all 7 packages should score 160/160 pub points. Also bump all versions to 1.1.3 and update READMEs accordingly.
1 parent 6ae07ec commit 7deab18

21 files changed

Lines changed: 60 additions & 32 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.1.3] - 2026-03-25
4+
5+
- Remove `publish_to: none` from all sub-package pubspec.yaml files so pub.dev can verify repository URLs (fixes pub points deduction).
6+
- Commit DevTools extension web build to git so it is always available without a local rebuild step.
7+
- Fix `.gitignore` to untrack all sub-package `pubspec.lock` files per Dart library conventions.
8+
9+
310
All notable changes to HyperRender will be documented in this file.
411

512
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Drop-in replacement for `flutter_html` and `flutter_widget_from_html`.
2525

2626
```yaml
2727
dependencies:
28-
hyper_render: ^1.1.2
28+
hyper_render: ^1.1.3
2929
```
3030
3131
```dart

packages/hyper_render_clipboard/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog — hyper_render_clipboard
22

3+
## [1.1.3] - 2026-03-25
4+
5+
- Remove `publish_to: none` from pubspec.yaml so pub.dev can verify the repository URL (fixes 10-point deduction).
6+
7+
38
## [1.1.2] - 2026-03-25
49

510
- Version bump to stay in sync with `hyper_render_core` 1.1.2 (Ruby selection fixes, CSS @keyframes support).

packages/hyper_render_clipboard/pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
publish_to: none
21
name: hyper_render_clipboard
32
description: Image clipboard support for HyperRender using super_clipboard. Enables copying, saving, and sharing images.
4-
version: 1.1.2
3+
version: 1.1.3
54
homepage: https://github.com/brewkits/hyper_render
65
repository: https://github.com/brewkits/hyper_render/tree/main/packages/hyper_render_clipboard
76
issue_tracker: https://github.com/brewkits/hyper_render/issues

packages/hyper_render_core/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog — hyper_render_core
22

3+
## [1.1.3] - 2026-03-25
4+
5+
- Remove `publish_to: none` from pubspec.yaml so pub.dev can verify the repository URL (fixes 10-point deduction).
6+
7+
38
## [1.1.2] - 2026-03-25
49

510
### 🐛 Bug Fixes

packages/hyper_render_core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Zero-dependency core rendering engine for HyperRender.
2626

2727
```yaml
2828
dependencies:
29-
hyper_render_core: ^1.1.2
29+
hyper_render_core: ^1.1.3
3030
```
3131
3232
## Minimal Dependencies

packages/hyper_render_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: hyper_render_core
22
description: Core engine for HyperRender. Universal Document Tree, single-RenderObject layout with CSS float, Flexbox, Grid, CJK typography, and crash-free text selection.
3-
version: 1.1.2
3+
version: 1.1.3
44
homepage: https://github.com/brewkits/hyper_render
55
repository: https://github.com/brewkits/hyper_render/tree/main/packages/hyper_render_core
66
issue_tracker: https://github.com/brewkits/hyper_render/issues

packages/hyper_render_devtools/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog — hyper_render_devtools
22

3+
## [1.1.3] - 2026-03-25
4+
5+
- Remove `publish_to: none` from pubspec.yaml so pub.dev can verify the repository URL (fixes 10-point deduction).
6+
7+
38
## [1.1.2] - 2026-03-25
49

510
### ✨ New

packages/hyper_render_devtools/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Add the package to your app's `dev_dependencies` (debug-only usage):
1717

1818
```yaml
1919
dev_dependencies:
20-
hyper_render_devtools: ^1.1.2
20+
hyper_render_devtools: ^1.1.3
2121
```
2222
2323
Or add to `dependencies` if you want it available in profile builds:
2424

2525
```yaml
2626
dependencies:
27-
hyper_render_devtools: ^1.1.2
27+
hyper_render_devtools: ^1.1.3
2828
```
2929

3030
## Usage

packages/hyper_render_devtools/pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
publish_to: none
21
name: hyper_render_devtools
32
description: "DevTools extension for HyperRender — inspect UDT trees, computed styles, fragments, and performance metrics."
4-
version: 1.1.2
3+
version: 1.1.3
54
homepage: https://github.com/brewkits/hyper_render
65
repository: https://github.com/brewkits/hyper_render/tree/main/packages/hyper_render_devtools
76
issue_tracker: https://github.com/brewkits/hyper_render/issues

0 commit comments

Comments
 (0)