From b4a1da7b0e740ec6dfe740e50a63c801f213800f Mon Sep 17 00:00:00 2001 From: TeamworkGuy2 Date: Sat, 12 Jun 2021 17:59:43 +0000 Subject: [PATCH] 0.11.0 - Update to TypeScript 4.3 --- CHANGELOG.md | 10 ++++++++-- package.json | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07a5276..72c2007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,15 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/ -------- -### [0.10.0](N/A) - 2021-06-05 +### [0.11.0](N/A) - 2021-06-12 #### Changed -* `Dates` and `Timestampts` `toDisplayTime()` and `toDisplayDateTime()` AM/PM constants change from "a.m." and "p.m." to "am" and "pm" +* Update to TypeScript 4.3 + + +-------- +### [0.10.0](https://github.com/TeamworkGuy2/ts-date-times/commit/b7d014a0e660ffe31821dd19def8f1b5058d6a28) - 2021-06-05 +#### Changed +* `Dates` and `Timestampts` `toDisplayTime()` and `toDisplayDateTime()` AM/PM constants change from "a.m." and "p.m." to "am" and "pm" to better align with Javascript defaults * AM/PM constant strings can be change via `DateConstants.AM_STRING` and `PM_STRING` diff --git a/package.json b/package.json index c4550c0..d4294a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-date-times", - "version": "0.10.0", + "version": "0.11.0", "description": "Manage dates, timestamps, and .NET DateTime JSON in TypeScript", "author": "TeamworkGuy2", "homepage": "https://github.com/TeamworkGuy2/ts-date-times", @@ -16,7 +16,7 @@ "@types/mocha": "~5.2.7", "chai": "~4.2.0", "mocha": "~5.2.0", - "typescript": "~4.0.2" + "typescript": "~4.3.2" }, "scripts": { "test": "node node_modules/mocha/bin/_mocha -u tdd --recursive",