Skip to content

Commit

Permalink
bumped to version 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nixrajput committed Jan 25, 2023
1 parent 36695fc commit e4bc794
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 1.2.2

- **Change**: Removed unnecessary dependencies.
- **Fix**: All known bugs and issues fixed.

## 1.2.1

- **Documentation**: Updated documentation.
Expand Down
10 changes: 6 additions & 4 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ class MyApp extends StatelessWidget {
title: 'GetTimeAgo Example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
visualDensity: VisualDensity.adaptivePlatformDensity,
brightness: Brightness.light),
visualDensity: VisualDensity.adaptivePlatformDensity,
brightness: Brightness.light,
),
darkTheme: ThemeData(
visualDensity: VisualDensity.adaptivePlatformDensity,
brightness: Brightness.dark),
visualDensity: VisualDensity.adaptivePlatformDensity,
brightness: Brightness.dark,
),
home: HomePage(),
);
}
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Demonstrates how to use the get_time_ago plugin.
publish_to: 'none'

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions example/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<meta charset="UTF-8" />
<meta content="IE=Edge" http-equiv="X-UA-Compatible" />
<meta
content="A customizable carousel slider widget in Flutter which supports infinite scrolling, auto scrolling,
custom child widget, custom animations and pre-built indicators."
content="A Flutter package to convert and format DateTime object into get_time_ago format to get
String like 10 seconds ago, a minute ago, 7 hours ago, etc."
name="description"
/>

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: get_time_ago
description: A Flutter package to convert and format `DateTime` object into `get_time_ago` format to get String like `10 seconds ago`, `a minute ago`, `7 hours ago`, etc.
version: 1.2.1
version: 1.2.2
homepage: https://github.com/nixrajput
repository: https://github.com/nixrajput/get-time-ago
issue_tracker: https://github.com/nixrajput/get-time-ago/issues
Expand Down

0 comments on commit e4bc794

Please sign in to comment.