Skip to content

Commit 46fb9f9

Browse files
committed
feat: release v1.1.1
1 parent f1ba391 commit 46fb9f9

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- update dependencies
3+
14
## 1.1.0
25
- update dependencies and improve documentation
36

example/enough_ascii_art_example.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import 'dart:io';
2+
23
import 'package:enough_ascii_art/enough_ascii_art.dart' as art;
34
import 'package:image/image.dart' as img;
45

5-
void main() async {
6+
Future<void> main() async {
67
final bytes = await File('./example/enough.jpg').readAsBytes();
78
final image = img.decodeImage(bytes)!;
89
var asciiImage = art.convertImage(image, maxWidth: 40, invert: true);

lib/src/emoticon_converter.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class EmoticonConverter {
6868
}
6969
switch (style) {
7070
case EmoticonStyle.western:
71-
default:
7271
return _convert(text, _westernStyleEmoticons);
7372
}
7473
}

pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: enough_ascii_art
22
description: Generates ASCII art using image to ASCII, FIGlet text banner
33
support and emoticon to text conversions.
4-
version: 1.1.0
4+
version: 1.1.1
55
homepage: https://github.com/Enough-Software/enough_ascii_art
66

77
environment:
8-
sdk: '>=2.12.0 <3.0.0'
8+
sdk: '>=3.0.0 <4.0.0'
99

1010
dependencies:
11-
characters: ^1.1.0
12-
image: ^4.0.0
11+
characters: ^1.4.1
12+
image: ^4.5.4
1313

1414
dev_dependencies:
15-
lints: ^2.0.1
16-
test: ^1.22.0
15+
lints: ^6.0.0
16+
test: ^1.26.0

0 commit comments

Comments
 (0)