We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dff8f4 commit b878c50Copy full SHA for b878c50
NEWS.md
@@ -50,6 +50,7 @@ Standard library changes
50
* The process id is appended to malloc log files in order to track memory allocations of
51
multiple processes ([#29969]).
52
* `Base.julia_cmd` now propagates the `--inline=(yes|no)` flag ([#29858]).
53
+ * New `DateTime(::Date, ::Time)` constructor ([#29754]).
54
55
Compiler/Runtime improvements
56
-----------------------------
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