Skip to content

Commit e2afe15

Browse files
committed
Version update to 2.0.0-nullsafety.1
1 parent 097f50f commit e2afe15

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [2.0.0-nullsafety.1] - [March 13, 2021]
2+
* Null safety, finally! Prerelease
3+
14
## [1.2.0] - [March 4, 2021]
25
* Breaking change! Deprecated parameter 'Overflow' replaced with 'Clip' for Stack widget.
36
* Documentation implementation

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import 'package:badges/badges.dart';
2121
<br>
2222

2323
## Breaking changes:
24+
Check prerelease on pub.dev for null safety version
2425
If you want to use `badges v1.2.0` and above, you need to upgrade your flutter version at least to `v1.22.0-12.0.pre.`.
2526

2627
<br>

example/ios/Flutter/Flutter.podspec

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#
2+
# NOTE: This podspec is NOT to be published. It is only used as a local source!
3+
#
4+
5+
Pod::Spec.new do |s|
6+
s.name = 'Flutter'
7+
s.version = '1.0.0'
8+
s.summary = 'High-performance, high-fidelity mobile apps.'
9+
s.description = <<-DESC
10+
Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS.
11+
DESC
12+
s.homepage = 'https://flutter.io'
13+
s.license = { :type => 'MIT' }
14+
s.author = { 'Flutter Dev Team' => '[email protected]' }
15+
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
16+
s.ios.deployment_target = '8.0'
17+
s.vendored_frameworks = 'Flutter.framework'
18+
end

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: badges
22
description: A flutter package for creating badges. Badges can be used for an additional marker for any widget, e.g. show a number of items in a shopping cart.
3-
version: 2.0.0
3+
version: 2.0.0-nullsafety.1
44
homepage: https://github.com/yadaniyil/flutter_badges
55

66
dependencies:
@@ -10,7 +10,7 @@ dependencies:
1010
dev_dependencies:
1111
flutter_test:
1212
sdk: flutter
13-
pedantic: ^1.9.2
13+
pedantic: ^1.11.0
1414

1515
environment:
1616
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)