human-date-parser 0.3.1

Parses strings that express dates in a human way into ones usable by code.
Documentation
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1]

### Changed

- Improved documentation of the main function

### Fixed
- Fixed README code example

## [0.3.0]

### Changed
- The library no longer uses the local time zone and instead uses naive times.
  Handling of time zones is left up to the consumer of the library.
- Internal: Input text is not being parsed into a custom AST before being
  processed. This should make it easier to reason about how the code works.

## [0.2.0]

## Added
- Allow the pattern like 7 days ago at today, which is parsed to [Ago] [AtLiteral] [HumanTime].
- Impl Display for ParseResult to allow directly println without match

## Fixed
- Fixed issue with 'months ago' parsing

## [0.1.2]

### Added
- Implement RelativeSpecifier ~ Week ~ Weekday
- Add 'Overmorrow'

### Changed
- Fix panic on invalid iso date

## [0.1.1]

### Added
- Allow return of naive dates

## [0.1.0]

Initial release

[unreleased]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.3.0...HEAD
[0.3.1]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.1.2...v0.2.0
[0.1.2]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/technologicalMayhem/human-date-parser/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/technologicalMayhem/human-date-parser/releases/tag/v0.1.0