summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfhoughton <dfhoughton@gmail.com>2019-09-15 18:46:53 -0400
committerdfhoughton <dfhoughton@gmail.com>2019-09-15 18:46:53 -0400
commitce61cbe65cc813fffdef12d05c476b7ef5de2d4f (patch)
treef19ed4f985e7f52fb59f61951169f376b902b06d
parentff250e4e72b6a4dad1bd53b2fc9254f17d7d8716 (diff)
downloadtwo-timer-ce61cbe65cc813fffdef12d05c476b7ef5de2d4f.zip
reverse listing of changes in changelog
-rw-r--r--CHANGES.md54
1 files changed, 27 insertions, 27 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 7d8222b..dc68ebd 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,15 +1,22 @@
# Change Log
-## 1.0.0
-* convert `Date<Utc>` and `DateTime<Utc>` everywhere to `NaiveDate` and `NaiveDateTime`
-* added "weekend" for the expressions "this weekend", "last weekend", etc.
-* don't require space between era suffix and year -- "100AD" is as good as "100 AD"
-## 1.0.1
-* removing some documentation
-## 1.0.2
-* added `msg` method to `TimeError`
-## 1.0.3
-* fixed "12 pm" bug
+## 1.2.1
+* bumpled lazy_static and pidgin dependencies
+* use serialized matcher to avoid the cost of generating two_timer::GRAMMAR via the macro;
+this cuts about 0.4 seconds off the startup time of two_timer on my machine, going from 0.85 seconds to 0.48 seconds
+## 1.2.0
+* added parsable function
+## 1.1.0
+* bumped lazy_static dependency
+## 1.0.8
+* made the space between time and AM/PM optional
+## 1.0.7
+* added `<specific_time>` pattern: e.g., 1969-05-06 12:03:05
+## 1.06
+* added "before and after"
+* fixed "Friday the 13th" and "the 31st" to scan back through the calendar to the nearest match
+## 1.0.5
+* better organization and documentation of grammar
## 1.0.4
* added `<year>` pattern
* added ordinals for days of the month
@@ -18,20 +25,13 @@
* added period before/after/around time
* added noon and midnight
* added `<count>` `<periods>` from now/ago
-## 1.0.5
-* better organization and documentation of grammar
-## 1.06
-* added "before and after"
-* fixed "Friday the 13th" and "the 31st" to scan back through the calendar to the nearest match
-## 1.0.7
-* added `<specific_time>` pattern: e.g., 1969-05-06 12:03:05
-## 1.0.8
-* made the space between time and AM/PM optional
-## 1.1.0
-* bumped lazy_static dependency
-## 1.2.0
-* added parsable function
-## 1.2.1
-* bumpled lazy_static and pidgin dependencies
-* use serialized matcher to avoid the cost of generating two_timer::GRAMMAR via the macro;
-this cuts about 0.4 seconds off the startup time of two_timer on my machine, going from 0.85 seconds to 0.48 seconds \ No newline at end of file
+## 1.0.3
+* fixed "12 pm" bug
+## 1.0.2
+* added `msg` method to `TimeError`
+## 1.0.1
+* removing some documentation
+## 1.0.0
+* convert `Date<Utc>` and `DateTime<Utc>` everywhere to `NaiveDate` and `NaiveDateTime`
+* added "weekend" for the expressions "this weekend", "last weekend", etc.
+* don't require space between era suffix and year -- "100AD" is as good as "100 AD"