Skip to content

Commit

Permalink
chore: Update version to 0.0.1-pre.8 and SDK dependency to >=3.4.0 <4…
Browse files Browse the repository at this point in the history
….0.0
  • Loading branch information
PlugFox committed Jul 17, 2024
1 parent 3c68339 commit ec3b648
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
27 changes: 13 additions & 14 deletions lib/src/model/pubspec.yaml.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ sealed class Pubspec {
static const PubspecVersion version = (
/// Non-canonical string representation of the version as provided
/// in the pubspec.yaml file.
representation: r'0.0.1-pre.7',
representation: r'0.0.1-pre.8',

/// Returns a 'canonicalized' representation
/// of the application version.
/// This represents the version string in accordance with
/// Semantic Versioning (SemVer) standards.
canonical: r'0.0.1-pre.7',
canonical: r'0.0.1-pre.8',

/// MAJOR version when you make incompatible API changes.
/// The major version number: 1 in "1.2.3".
Expand All @@ -115,7 +115,7 @@ sealed class Pubspec {
patch: 1,

/// The pre-release identifier: "foo" in "1.2.3-foo".
preRelease: <String>[r'pre', r'7'],
preRelease: <String>[r'pre', r'8'],

/// The build identifier: "foo" in "1.2.3+foo".
build: <String>[],
Expand All @@ -124,13 +124,13 @@ sealed class Pubspec {
/// Build date and time (UTC)
static final DateTime timestamp = DateTime.utc(
2024,
6,
12,
10,
22,
54,
467,
344,
7,
17,
19,
8,
28,
336,
435,
);

/// Name
Expand Down Expand Up @@ -358,7 +358,7 @@ sealed class Pubspec {

/// Environment
static const Map<String, String> environment = <String, String>{
'sdk': '>=3.3.0 <4.0.0',
'sdk': '>=3.4.0 <4.0.0',
};

/// Platforms
Expand Down Expand Up @@ -426,8 +426,8 @@ sealed class Pubspec {
/// see [Package dependencies](https://dart.dev/tools/pub/dependencies).
static const Map<String, Object> dependencies = <String, Object>{
'meta': r'^1.9.1',
'ws': r'^1.0.0-pre.6',
'protobuf': r'^3.1.0',
'web': r'^1.0.0',
'crypto': r'^3.0.3',
'fixnum': r'^1.1.0',
'stack_trace': r'^1.11.0',
Expand All @@ -438,10 +438,9 @@ sealed class Pubspec {
'build_runner': r'^2.4.6',
'pubspec_generator': r'^4.0.0',
'benchmark_harness': r'^2.2.2',
'lints': r'^3.0.0',
'lints': r'>=3.0.0 <5.0.0',
'test': r'^1.24.4',
'fake_async': r'^1.3.1',
'mockito': r'^5.4.4',
};

/// Dependency overrides
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: >
Dart client to communicate with Centrifuge and Centrifugo from Flutter and VM
over WebSockets
version: 0.0.1-pre.7
version: 0.0.1-pre.8

homepage: https://centrifugal.dev

Expand Down

0 comments on commit ec3b648

Please sign in to comment.