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
/// Non-canonical string representation of the version as provided
95
96
/// in the pubspec.yaml file.
96
-
representation:r'0.2.0',
97
+
representation:r'0.3.0',
97
98
98
99
/// Returns a 'canonicalized' representation
99
100
/// of the application version.
100
101
/// This represents the version string in accordance with
101
102
/// Semantic Versioning (SemVer) standards.
102
-
canonical:r'0.2.0',
103
+
canonical:r'0.3.0',
103
104
104
105
/// MAJOR version when you make incompatible API changes.
105
106
/// The major version number: 1 in "1.2.3".
@@ -108,7 +109,7 @@ sealed class Pubspec {
108
109
/// MINOR version when you add functionality
109
110
/// in a backward compatible manner.
110
111
/// The minor version number: 2 in "1.2.3".
111
-
minor:2,
112
+
minor:3,
112
113
113
114
/// PATCH version when you make backward compatible bug fixes.
114
115
/// The patch version number: 3 in "1.2.3".
@@ -124,13 +125,13 @@ sealed class Pubspec {
124
125
/// Build date and time (UTC)
125
126
staticfinalDateTime timestamp =DateTime.utc(
126
127
2025,
127
-
1,
128
-
26,
129
-
21,
130
-
22,
131
-
43,
132
-
852,
133
-
940,
128
+
4,
129
+
9,
130
+
16,
131
+
50,
132
+
36,
133
+
651,
134
+
857,
134
135
);
135
136
136
137
/// Name
@@ -165,8 +166,7 @@ sealed class Pubspec {
165
166
/// Think of the description as the sales pitch for your package.
166
167
/// Users see it when they [browse for packages](https://pub.dev/packages).
167
168
/// The description is plain text: no markdown or HTML.
168
-
staticconstString description =
169
-
r'Dart client to communicate with Centrifuge and Centrifugo from Dart and Flutter over WebSockets with Protobuf support.';
169
+
staticconstString description =r'Dart client to communicate with Centrifuge and Centrifugo from Dart and Flutter over WebSockets with Protobuf support.';
170
170
171
171
/// Homepage
172
172
///
@@ -187,7 +187,7 @@ sealed class Pubspec {
187
187
/// Repository
188
188
/// The optional repository field should contain the URL for your package’s
189
189
/// source code repository—for example,
190
-
/// https://github.com/<user>/<repository>.
190
+
/// https://github.com/user/repository
191
191
/// If you publish your package to the pub.dev site,
192
192
/// then your package’s page displays the repository URL.
193
193
/// While providing a repository is optional,
@@ -205,9 +205,8 @@ sealed class Pubspec {
205
205
/// to each package’s issue tracker, using the value of this field.
206
206
/// If issue_tracker is missing but repository is present and points to GitHub,
207
207
/// then the pub.dev site uses the default issue tracker
0 commit comments