Skip to content

Commit d2c04a5

Browse files
committed
Bump version
1 parent 40298f5 commit d2c04a5

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.6.1
2+
3+
### Fixed
4+
5+
* A compiling issue on iOS when using CocoaPods to setup the plugin. This is caused by the incompatible Swift language version is used. [#131](https://github.com/line/flutter_line_sdk/pull/131)
6+
17
## 2.6.0
28

39
### Added

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,11 @@ To access your LINE Login channel from a mobile platform, you need some extra co
5757

5858
### Adding flutter_line_sdk package
5959

60-
Use the standard way of adding this package to your Flutter app, as described in the [Flutter documentation](https://flutter.dev/docs/development/packages-and-plugins/using-packages). The process consists of these steps:
60+
Use the standard way of adding this package to your Flutter app, as described in the [Flutter documentation](https://flutter.dev/docs/development/packages-and-plugins/using-packages):
6161

62-
1. Open the `pubspec.yaml` file in your app folder and, under `dependencies`, add `flutter_line_sdk:`.
63-
2. Install it by running this in a terminal: `flutter pub get`
62+
```sh
63+
flutter pub add flutter_line_sdk
64+
```
6465

6566
Now, the Dart part of `flutter_line_sdk` should be installed. Next, you need to set up LINE SDK for iOS and Android projects, respectively.
6667

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ packages:
6868
path: ".."
6969
relative: true
7070
source: path
71-
version: "2.6.0"
71+
version: "2.6.1"
7272
flutter_test:
7373
dependency: "direct dev"
7474
description: flutter

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_line_sdk_example
22
description: Demonstrates how to use the flutter_line_sdk plugin.
33
publish_to: 'none'
4-
version: 2.6.0+291
4+
version: 2.6.1+294
55

66
environment:
77
sdk: '>=2.12.0 <4.0.0'

ios/flutter_line_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'flutter_line_sdk'
3-
s.version = '2.6.0'
3+
s.version = '2.6.1'
44
s.summary = 'A Flutter plugin for using the LINE SDKs with Dart in Flutter apps.'
55
s.description = <<-DESC
66
A Flutter plugin using the LINE SDKs with Dart in Flutter apps. It provides the channel to use the native LINE SDK for

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_line_sdk
22
description: A Flutter plugin for using the LINE SDKs with Dart in Flutter apps.
3-
version: 2.6.0
3+
version: 2.6.1
44
homepage: https://developers.line.biz/
55
repository: https://github.com/line/flutter_line_sdk/
66

0 commit comments

Comments
 (0)