anarchuser / mic_stream

Flutter plugin to get an infinite audio stream from the microphone
https://pub.dev/packages/mic_stream
GNU General Public License v3.0
100 stars 68 forks source link

added support for dart 3.1.4 #86

Closed Binozo closed 10 months ago

Binozo commented 10 months ago

Hello,

I modified the pubspec.yaml file to allow projects to use this package with dart version 3.1.4

anarchuser commented 10 months ago

Hey, thanks for your initiative. I just had another look at Flutter's versioning system to figure out what this should be long-term (new PRs for new Dart versions in general is unfeasible). I think the proper way is to allow up to the next major version. I.e., I think changing it to ^3.0.0 is the most appropriate here.

I hope I'll get around this tomorrow, this should also close #85.

Binozo commented 10 months ago

Thanks for your quick response!

Yeah you are right. Allowing it up to the next major version would be the best fit in this case. Looking forward to use this project in my custom home assistant project :)

anarchuser commented 10 months ago

Alright, I updated the package. Please run flutter upgrade and it should work without changes on your side.

Binozo commented 10 months ago

Thanks!