File tree Expand file tree Collapse file tree 7 files changed +36
-12
lines changed Expand file tree Collapse file tree 7 files changed +36
-12
lines changed Original file line number Diff line number Diff line change 4747** /generated /**
4848
4949# Gradle build files
50- ** /build /**
50+ # IMPORTANT: ignoring `/build/` folder in any form makes it impossible to publish
51+ # the `build/pub/..` contents due to the recently introduced `pub` tool regulations.
52+ ** /build /descriptors
53+ ** /build /extracted-include-protos
54+ ** /build /extracted-protos
55+ ** /build /libs
56+ ** /build /resources
57+ ** /build /tmp
5158
5259# Build files produced by the IDE
5360** /out /**
Original file line number Diff line number Diff line change 44# Remove the following pattern if you wish to check in your lock file
55pubspec.lock
66
7- # Conventional directory for build outputs
8- build /
7+ # IMPORTANT: ignoring `/ build/` folder in any form makes it impossible to publish
8+ # the ` build/pub/..` contents due to the recently introduced `pub` tool regulations.
99
1010# Directory created by dartdoc
1111doc /api /
Original file line number Diff line number Diff line change 4141## 1.7.3
4242 This release introduces null-safe API, according to the new Dart null safety feature.
4343 The Dart language version is promoted to ` 2.13 ` .
44+
45+ ## 1.7.4
46+
47+ In this release, the subscription API has been improved. It is now possible to cancel the event
48+ subscriptions via ` EventSubscription ` type, which is now returned
49+ instead of ` Stream<EventMessage> ` .
50+
51+ ## 1.7.5
52+ In this release, the asynchronous nature of the subscription API has been reflected in returning
53+ ` Future ` s upon calling ` post(..) ` . This makes the flow more transparent for end-users,
54+ as previously ` Future ` instances were hidden deep inside the returned ` EventSubscription ` and
55+ ` StateSubscription ` objects.
56+
57+ ## 1.8.0
58+ This release is a compatibility package, issued in scope of Spine's ` 1.8.0 ` release.
59+ Additionally, the dependency onto ` optional ` package was upgraded from
60+ a pre-release ` 6.0.0-nullsafety.2 ` to ` ^6.0.0 ` .
Original file line number Diff line number Diff line change 11name : spine_client
22description : Dart-based library for client applications of Spine-based systems.
3- version : 1.7.5
3+ version : 1.8.0
44homepage : https://spine.io
55
66environment :
@@ -13,7 +13,7 @@ dependencies:
1313 firebase : ^9.0.1
1414 fixnum : ^1.0.0
1515 sprintf : ^6.0.0
16- optional : ^6.0.0-nullsafety.2
16+ optional : ^6.0.0
1717
1818dev_dependencies :
1919 pedantic : ^1.11.0
Original file line number Diff line number Diff line change 44# Remove the following pattern if you wish to check in your lock file
55pubspec.lock
66
7- # Conventional directory for build outputs
8- build /
7+ # IMPORTANT: ignoring `/ build/` folder in any form makes it impossible to publish
8+ # the ` build/pub/..` contents due to the recently introduced `pub` tool regulations.
99
1010# Directory created by dartdoc
1111doc /api /
Original file line number Diff line number Diff line change 11name : dart_code_gen
22description : A command-line tool which generates Dart code for Protobuf type registries.
3- version : 1.7.5
3+ version : 1.8.0
44homepage : https://spine.io
55
66environment :
@@ -12,7 +12,7 @@ dependencies:
1212 fixnum : ^1.0.0
1313 code_builder : ^4.0.0
1414 dart_style : ^2.0.1
15- optional : ^6.0.0-nullsafety.2
15+ optional : ^6.0.0
1616
1717dev_dependencies :
1818 pedantic : ^1.11.0
Original file line number Diff line number Diff line change 2929 * already in the root directory.
3030 */
3131
32- val spineBaseVersion: String by extra(" 1.7.4 " )
33- val spineWebVersion: String by extra(" 1.7.1 " )
34- val versionToPublish: String by extra(" 1.7.2-SNAPSHOT.1 " )
32+ val spineBaseVersion: String by extra(" 1.8.0 " )
33+ val spineWebVersion: String by extra(" 1.8.0 " )
34+ val versionToPublish: String by extra(" 1.8.0 " )
You can’t perform that action at this time.
0 commit comments