diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4e0721..b4bff29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: [push, pull_request] +on: [push] jobs: test: diff --git a/CHANGELOG.md b/CHANGELOG.md index b96a5a5..ed5e606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index c609a52..3ebcc7a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/README.md b/doc/README.md index 6c376a5..0efab43 100644 --- a/doc/README.md +++ b/doc/README.md @@ -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) diff --git a/test/jiffy_parse_test.dart b/test/jiffy_parse_test.dart index 70f4348..e06491a 100644 --- a/test/jiffy_parse_test.dart +++ b/test/jiffy_parse_test.dart @@ -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( @@ -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(