Skip to content

Commit

Permalink
Bump v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AnasNaouchi committed Nov 12, 2024
1 parent b2a0307 commit eaf47c9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.0

### New Features

- Add `Source` request creation using the omise API.

## 0.2.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the package, first add it to your project by including the following in y

```yaml
dependencies:
omise_dart: ^0.2.0
omise_dart: ^0.3.0
```
Then, run:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/package_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PackageInfo {
/// The version of the package.
///
/// This constant holds the package's version as defined in `pubspec.yaml`.
static const String packageVersion = '0.2.0';
static const String packageVersion = '0.3.0';

static const String userAgentIdentifier = "OmiseDart";
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: omise_dart
description: A Dart SDK that serves as an API wrapper for the Omise API.

version: 0.2.0
version: 0.3.0
repository: https://github.com/omise/omise_dart

environment:
Expand Down
2 changes: 1 addition & 1 deletion test/package_info_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void main() {
});

test('should return correct package version', () {
expect(PackageInfo.packageVersion, '0.2.0');
expect(PackageInfo.packageVersion, '0.3.0');
});
});
}

0 comments on commit eaf47c9

Please sign in to comment.