Committed by
GitHub
Publish stable release (#94)
* Publish stable platform interface release * Bump packages
Showing
9 changed files
with
39 additions
and
23 deletions
| @@ -32,7 +32,7 @@ dev_dependencies: | @@ -32,7 +32,7 @@ dev_dependencies: | ||
| 32 | integration_test: ^1.0.1 | 32 | integration_test: ^1.0.1 |
| 33 | test: any | 33 | test: any |
| 34 | 34 | ||
| 35 | - pedantic: ^1.10.0-nullsafety.3 | 35 | + pedantic: ^1.10.0 |
| 36 | 36 | ||
| 37 | dependency_overrides: | 37 | dependency_overrides: |
| 38 | # We override the platform dependencies of wakelock here because we use the example app for | 38 | # We override the platform dependencies of wakelock here because we use the example app for |
| @@ -2,12 +2,12 @@ name: wakelock | @@ -2,12 +2,12 @@ name: wakelock | ||
| 2 | description: >-2 | 2 | description: >-2 |
| 3 | Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on | 3 | Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on |
| 4 | Android, iOS, macOS, and web. | 4 | Android, iOS, macOS, and web. |
| 5 | -version: 0.4.0-nullsafety.0 | 5 | +version: 0.4.0 |
| 6 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock | 6 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock |
| 7 | 7 | ||
| 8 | environment: | 8 | environment: |
| 9 | - sdk: '>=2.12.0-0 <3.0.0' | ||
| 10 | - flutter: '>=1.24.0-0 <2.0.0' | 9 | + sdk: '>=2.12.0-259.9.beta <3.0.0' |
| 10 | + flutter: '>=1.24.0-0' | ||
| 11 | 11 | ||
| 12 | dependencies: | 12 | dependencies: |
| 13 | flutter: | 13 | flutter: |
| @@ -15,15 +15,15 @@ dependencies: | @@ -15,15 +15,15 @@ dependencies: | ||
| 15 | 15 | ||
| 16 | meta: ^1.2.0 | 16 | meta: ^1.2.0 |
| 17 | 17 | ||
| 18 | - wakelock_macos: ^0.1.0-nullsafety.0 | ||
| 19 | - wakelock_platform_interface: ^0.2.0-nullsafety.2 | ||
| 20 | - wakelock_web: ^0.2.0-nullsafety.0 | 18 | + wakelock_macos: ^0.1.0 |
| 19 | + wakelock_platform_interface: ^0.2.0 | ||
| 20 | + wakelock_web: ^0.2.0 | ||
| 21 | 21 | ||
| 22 | dev_dependencies: | 22 | dev_dependencies: |
| 23 | flutter_test: | 23 | flutter_test: |
| 24 | sdk: flutter | 24 | sdk: flutter |
| 25 | 25 | ||
| 26 | - pedantic: ^1.10.0-nullsafety.0 | 26 | + pedantic: ^1.10.0 |
| 27 | pigeon: ^0.1.15 | 27 | pigeon: ^0.1.15 |
| 28 | 28 | ||
| 29 | flutter: | 29 | flutter: |
| 1 | name: wakelock_macos | 1 | name: wakelock_macos |
| 2 | description: macOS platform implementation of the wakelock_platform_interface for the wakelock plugin. | 2 | description: macOS platform implementation of the wakelock_platform_interface for the wakelock plugin. |
| 3 | -version: 0.1.0-nullsafety.0 | 3 | +version: 0.1.0 |
| 4 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_macos | 4 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_macos |
| 5 | 5 | ||
| 6 | environment: | 6 | environment: |
| 7 | - sdk: '>=2.12.0-0 <3.0.0' | ||
| 8 | - flutter: '>=1.24.0-0 <2.0.0' | 7 | + sdk: '>=2.12.0-259.9.beta <3.0.0' |
| 8 | + flutter: '>=1.24.0-0' | ||
| 9 | 9 | ||
| 10 | dependencies: | 10 | dependencies: |
| 11 | flutter: | 11 | flutter: |
| @@ -13,13 +13,13 @@ dependencies: | @@ -13,13 +13,13 @@ dependencies: | ||
| 13 | flutter_web_plugins: | 13 | flutter_web_plugins: |
| 14 | sdk: flutter | 14 | sdk: flutter |
| 15 | 15 | ||
| 16 | - wakelock_platform_interface: ^0.2.0-nullsafety.2 | 16 | + wakelock_platform_interface: ^0.2.0 |
| 17 | 17 | ||
| 18 | dev_dependencies: | 18 | dev_dependencies: |
| 19 | flutter_test: | 19 | flutter_test: |
| 20 | sdk: flutter | 20 | sdk: flutter |
| 21 | 21 | ||
| 22 | - pedantic: ^1.10.0-nullsafety.0 | 22 | + pedantic: ^1.10.0 |
| 23 | 23 | ||
| 24 | wakelock: | 24 | wakelock: |
| 25 | path: ../wakelock | 25 | path: ../wakelock |
| @@ -2,21 +2,21 @@ name: wakelock_platform_interface | @@ -2,21 +2,21 @@ name: wakelock_platform_interface | ||
| 2 | description: >-2 | 2 | description: >-2 |
| 3 | A common platform interface for the wakelock plugin used by the different platform | 3 | A common platform interface for the wakelock plugin used by the different platform |
| 4 | implementations. | 4 | implementations. |
| 5 | -version: 0.2.0-nullsafety.2 | 5 | +version: 0.2.0 |
| 6 | homepage: >-2 | 6 | homepage: >-2 |
| 7 | https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_platform_interface | 7 | https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_platform_interface |
| 8 | 8 | ||
| 9 | environment: | 9 | environment: |
| 10 | - sdk: '>=2.12.0-0 <3.0.0' | 10 | + sdk: '>=2.12.0-259.9.beta <3.0.0' |
| 11 | 11 | ||
| 12 | dependencies: | 12 | dependencies: |
| 13 | flutter: | 13 | flutter: |
| 14 | sdk: flutter | 14 | sdk: flutter |
| 15 | 15 | ||
| 16 | - meta: ^1.3.0-nullsafety.0 | 16 | + meta: ^1.3.0 |
| 17 | 17 | ||
| 18 | dev_dependencies: | 18 | dev_dependencies: |
| 19 | flutter_test: | 19 | flutter_test: |
| 20 | sdk: flutter | 20 | sdk: flutter |
| 21 | 21 | ||
| 22 | - pedantic: ^1.10.0-nullsafety.3 | 22 | + pedantic: ^1.10.0 |
| 1 | name: wakelock_web | 1 | name: wakelock_web |
| 2 | description: Web platform implementation of the wakelock_platform_interface for the wakelock plugin. | 2 | description: Web platform implementation of the wakelock_platform_interface for the wakelock plugin. |
| 3 | -version: 0.2.0-nullsafety.1 | 3 | +version: 0.2.0 |
| 4 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_web | 4 | homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_web |
| 5 | 5 | ||
| 6 | environment: | 6 | environment: |
| 7 | - sdk: '>=2.12.0-0 <3.0.0' | ||
| 8 | - flutter: '>=1.24.0-0 <2.0.0' | 7 | + sdk: '>=2.12.0-259.9.beta <3.0.0' |
| 8 | + flutter: '>=1.24.0-0' | ||
| 9 | 9 | ||
| 10 | dependencies: | 10 | dependencies: |
| 11 | flutter: | 11 | flutter: |
| @@ -13,15 +13,15 @@ dependencies: | @@ -13,15 +13,15 @@ dependencies: | ||
| 13 | flutter_web_plugins: | 13 | flutter_web_plugins: |
| 14 | sdk: flutter | 14 | sdk: flutter |
| 15 | 15 | ||
| 16 | - js: ^0.6.3-nullsafety.0 | 16 | + js: ^0.6.3 |
| 17 | 17 | ||
| 18 | - wakelock_platform_interface: ^0.2.0-nullsafety.2 | 18 | + wakelock_platform_interface: ^0.2.0 |
| 19 | 19 | ||
| 20 | dev_dependencies: | 20 | dev_dependencies: |
| 21 | flutter_test: | 21 | flutter_test: |
| 22 | sdk: flutter | 22 | sdk: flutter |
| 23 | 23 | ||
| 24 | - pedantic: ^1.10.0-nullsafety.0 | 24 | + pedantic: ^1.10.0 |
| 25 | 25 | ||
| 26 | wakelock: | 26 | wakelock: |
| 27 | path: ../wakelock | 27 | path: ../wakelock |
-
Please register or login to post a comment