You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**MAJOR** (`X.0.0`) — Breaking API changes (e.g., removing a function, changing a return type).
10
-
-**MINOR** (`0.X.0`) — New features, backward-compatible (e.g., adding a new cipher or hash algorithm).
11
-
-**PATCH** (`0.0.X`) — Bug fixes and patches, backward-compatible (e.g., fixing edge case in encryption).
9
+
-**MAJOR** (`X.0.0`): Breaking API changes (e.g., removing a function, changing a return type).
10
+
-**MINOR** (`0.X.0`): New features, backward-compatible (e.g., adding a new cipher or hash algorithm).
11
+
-**PATCH** (`0.0.X`): Bug fixes and patches, backward-compatible (e.g., fixing edge case in encryption).
12
12
13
13
For pre-release versions, append a suffix: `0.2.0-dev.1`, `1.0.0-beta.1`.
14
14
@@ -70,12 +70,12 @@ Move the `## Unreleased` section content under a new version header with the cur
70
70
```
71
71
72
72
Follow [Keep a Changelog](https://keepachangelog.com/) format with these categories:
73
-
- **Added** — New features
74
-
- **Changed** — Changes to existing functionality
75
-
- **Deprecated** — Features that will be removed in future versions
76
-
- **Removed** — Removed features
77
-
- **Fixed** — Bug fixes
78
-
- **Security** — Vulnerability fixes
73
+
- **Added**: New features
74
+
- **Changed**: Changes to existing functionality
75
+
- **Deprecated**: Features that will be removed in future versions
76
+
- **Removed**: Removed features
77
+
- **Fixed**: Bug fixes
78
+
- **Security**: Vulnerability fixes
79
79
80
80
### 4. Run All Checks
81
81
@@ -147,15 +147,15 @@ Or via the GitHub web UI:
147
147
> **First-time setup**: Ensure you are authenticated with `dart pub login` and that the package publisher is configured on pub.dev. See [Verified Publishers](https://dart.dev/tools/pub/verified-publishers).
148
148
149
149
```bash
150
-
# Dry run first — review what will be published
150
+
# Dry run first: review what will be published
151
151
dart pub publish --dry-run
152
152
153
153
# If everything looks good, publish
154
154
dart pub publish
155
155
```
156
156
157
157
**Important notes:**
158
-
- Publishing is **permanent** — you cannot unpublish a version (only retract within 7 days).
158
+
- Publishing is **permanent**. You cannot unpublish a version (only retract within 7 days).
159
159
- Ensure `lib/src/rust/` generated files are included (they are needed by consumers).
160
160
- The `.pubignore` or `.gitignore` controls which files are excluded from the published package.
161
161
- Verify the package size is under 100 MB (gzip) / 256 MB (uncompressed).
0 commit comments