Skip to content

Commit

Permalink
Merge pull request #194 from jama5262/release-v-5.0.1
Browse files Browse the repository at this point in the history
Release v5.0.1
  • Loading branch information
jama5262 authored Feb 24, 2023
2 parents 9df9d76 + 0b749e2 commit 55665c2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [push, pull_request]
on: [push]

jobs:
test:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 5.0.1

## What's Changed
* change version intl to 0.18.0 by @nguyenxdat in https://github.com/jama5262/jiffy/pull/173

## New Contributors
* @nguyenxdat made their first contribution in https://github.com/jama5262/jiffy/pull/173

**Full Changelog**: https://github.com/jama5262/jiffy/compare/v5.0.0...v5.0.1

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![.github/workflows/release.yml](https://github.com/jama5262/jiffy/actions/workflows/release.yml/badge.svg)](https://github.com/jama5262/jiffy/actions/workflows/release.yml)
[![codecov](https://codecov.io/gh/jama5262/jiffy/branch/master/graph/badge.svg?token=Z2EGVUGWTE)](https://codecov.io/gh/jama5262/jiffy)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Pub Version](https://img.shields.io/badge/pub-v5.0.0-blue)](https://pub.dev/packages/jiffy)
[![Pub Version](https://img.shields.io/badge/pub-v5.0.1-blue)](https://pub.dev/packages/jiffy)
![Platform](https://img.shields.io/badge/platform-flutter%7Cweb%7Cdart%20vm-orange)

Jiffy is a Flutter (Android, IOS and Web) date time package inspired by [momentjs](https://momentjs.com/) for parsing, manipulating, querying and formatting dates
Expand Down
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![.github/workflows/release.yml](https://github.com/jama5262/jiffy/actions/workflows/release.yml/badge.svg)](https://github.com/jama5262/jiffy/actions/workflows/release.yml)
[![codecov](https://codecov.io/gh/jama5262/jiffy/branch/master/graph/badge.svg?token=Z2EGVUGWTE)](https://codecov.io/gh/jama5262/jiffy)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Pub Version](https://img.shields.io/badge/pub-v5.0.0-blue)](https://pub.dev/packages/jiffy)
[![Pub Version](https://img.shields.io/badge/pub-v5.0.1-blue)](https://pub.dev/packages/jiffy)
[![Platform](https://img.shields.io/badge/platform-flutter%7Cweb%7Cdart%20vm-orange)](https://github.com/jama5262/jiffy)


Expand Down
7 changes: 3 additions & 4 deletions test/jiffy_parse_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ void main() {
try {
Jiffy('', 'yyyy');
} catch (e) {
expect(e.toString(),
'FormatException: Trying to read yyyy from at position 0');
expect(e.toString(), 'FormatException: Trying to read yyyy from at 0');
}
});
test(
Expand All @@ -121,8 +120,8 @@ void main() {
try {
Jiffy('Oct', 'yyyy');
} catch (e) {
expect(e.toString(),
'FormatException: Trying to read yyyy from Oct at position 0');
expect(
e.toString(), 'FormatException: Trying to read yyyy from Oct at 0');
}
});
test(
Expand Down

0 comments on commit 55665c2

Please sign in to comment.