Skip to content

Commit 15329d1

Browse files
authored
Bump v0.4.0 (#22)
* Bump v0.4.0 * Update readme and changelog
1 parent 9558aac commit 15329d1

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.4.0
2+
3+
### Added
4+
5+
- Added new source `maybank_qr`.
6+
17
## 0.3.0
28

39
### New Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use the package, first add it to your project by including the following in y
1515

1616
```yaml
1717
dependencies:
18-
omise_dart: ^0.3.0
18+
omise_dart: ^0.4.0
1919
```
2020
2121
Then, run:

lib/src/package_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class PackageInfo {
1111
/// The version of the package.
1212
///
1313
/// This constant holds the package's version as defined in `pubspec.yaml`.
14-
static const String packageVersion = '0.3.0';
14+
static const String packageVersion = '0.4.0';
1515

1616
static const String userAgentIdentifier = "OmiseDart";
1717
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: omise_dart
22
description: A Dart SDK that serves as an API wrapper for the Omise API.
33

4-
version: 0.3.0
4+
version: 0.4.0
55
repository: https://github.com/omise/omise_dart
66

77
environment:

test/package_info_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void main() {
1212
});
1313

1414
test('should return correct package version', () {
15-
expect(PackageInfo.packageVersion, '0.3.0');
15+
expect(PackageInfo.packageVersion, '0.4.0');
1616
});
1717
});
1818
}

0 commit comments

Comments
 (0)