Skip to content

Commit a680616

Browse files
authored
Bump v0.7.0 (#38)
1 parent f983d11 commit a680616

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-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.7.0
2+
3+
### Added
4+
5+
- Support charge creation.
6+
17
## 0.6.0
28

39
### Added

README.md

Lines changed: 3 additions & 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.6.0
18+
omise_dart: ^0.7.0
1919
```
2020
2121
Then, run:
@@ -76,6 +76,8 @@ In the `example/` folder, you will find more comprehensive examples showing vari
7676

7777
- Creating a token
7878
- Fetching a token
79+
- Creating a charge
80+
- Fetching a charge
7981
- Fetching capability object.
8082

8183
To run the examples:

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.6.0';
14+
static const String packageVersion = '0.7.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.6.0
4+
version: 0.7.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.6.0');
15+
expect(PackageInfo.packageVersion, '0.7.0');
1616
});
1717
});
1818
}

0 commit comments

Comments
 (0)