We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 227bfb7 commit 1816ba2Copy full SHA for 1816ba2
NEWS.md
@@ -62,6 +62,7 @@ Standard library changes
62
* The process id is appended to malloc log files in order to track memory allocations of
63
multiple processes ([#29969]).
64
* `Base.julia_cmd` now propagates the `--inline=(yes|no)` flag ([#29858]).
65
+ * New `DateTime(::Date, ::Time)` constructor ([#29754]).
66
67
Compiler/Runtime improvements
68
-----------------------------
stdlib/Dates/src/types.jl
@@ -318,6 +318,9 @@ Construct a `DateTime` type by `Date` and `Time`.
318
Non-zero microseconds or nanoseconds in the `Time` type will result in an
319
`InexactError`.
320
321
+!!! compat "Julia 1.1"
322
+ This function requires at least Julia 1.1.
323
+
324
```jldoctest
325
julia> d = Date(2018, 1, 1)
326
2018-01-01
0 commit comments