Skip to content

Commit

Permalink
Update changelog and add special thanks
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Jan 23, 2024
1 parent 93d474f commit 04777d5
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

#### Python

* [GH-3663](https://github.com/fable-compiler/Fable/pull/3663) Add several missing `DateTime` API (by @MangelMaxime)
* [GH-3663](https://github.com/fable-compiler/Fable/pull/3663) Complete rewrite of `DateTime` supports (by @MangelMaxime)

*Special thanks to @dbrattli and @ncave for their help*

* Constructors
* From `(year, month, day)` up to `(year, month, day, hour, minute, second, millisecond, microsecond)` (with and without `DateTimeKind`)
* From `ticks` (with and without `DateTimeKind`)
* Instance methods:
* `dt.Year`
* `dt.Month`
* `dt.Day`
* `dt.Hour`
* `dt.Minute`
* `dt.Second`
* `dt.Millisecond`
* `dt.Microsecond`
* `dt.ToUniversalTime`
* `dt.DayOfWeek`
* `dt.DayOfYear`
* `dt.ToShortDateString`
* `dt.ToShortTimeString`
* `dt.ToLongDateString`
* `dt.ToLongTimeString`
* `dt.ToString`
* `dt.ToLocalTime`
* `dt.Date`
* `dt.AddYears`
* `dt.AddMonths`
Expand All @@ -58,8 +72,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `dt.AddSeconds`
* `dt.AddMilliseconds`
* `dt.AddMicroseconds`
* `dt.Kind`
* Static methods:
* `DateTime.Today`
* `DateTime.Now`
* `DateTime.Now`
* `DateTime.UtcNow`
* `DateTime.MinValue`
* `DateTime.MaxValue`
* `DateTime.Parse`
* `DateTime.TryParse`
* `DateTime.SpecifyKind`

## 4.9.0 - 2023-12-14

Expand Down

0 comments on commit 04777d5

Please sign in to comment.