File tree Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 1
1
build /
2
+ src /changelog.md
Original file line number Diff line number Diff line change 1
1
[deps ]
2
+ Changelog = " 5217a498-cd5d-4ec6-b8c2-9b85a09b6e3e"
2
3
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
4
IJulia = " 7073ff75-c697-5162-941a-fcdaad2a7d2a"
4
5
Original file line number Diff line number Diff line change
1
+ import Changelog
1
2
using Documenter, IJulia
2
3
4
+ # Build the changelog
5
+ Changelog. generate (
6
+ Changelog. Documenter (),
7
+ joinpath (@__DIR__ , " src/_changelog.md" ),
8
+ joinpath (@__DIR__ , " src/changelog.md" ),
9
+ repo= " JuliaLang/IJulia.jl"
10
+ )
3
11
4
12
# Make docs to `docs/build` directory
5
- makedocs (
13
+ makedocs (;
14
+ repo= Remotes. GitHub (" JuliaLang" , " IJulia.jl" ),
6
15
modules= [IJulia],
7
16
sitename= " IJulia" ,
8
17
format= Documenter. HTML (;
@@ -21,7 +30,8 @@ makedocs(
21
30
" library/public.md" ,
22
31
" library/internals.md" ,
23
32
],
24
- ],
33
+ " changelog.md"
34
+ ]
25
35
)
26
36
27
37
# Deploy docs
Original file line number Diff line number Diff line change
1
+ ``` @meta
2
+ CurrentModule = IJulia
3
+ ```
4
+
5
+ # Changelog
6
+
7
+ This documents notable changes in IJulia.jl. The format is based on [ Keep a
8
+ Changelog] ( https://keepachangelog.com ) .
9
+
10
+ ## Unreleased
11
+
12
+ ### Added
13
+ - [ ` installkernel() ` ] ( @ref ) now supports a ` displayname ` argument to customize
14
+ the kernel display name ([ #1137 ] ).
15
+
16
+ ### Fixed
17
+ - The internal heartbeat thread will now shut down cleanly ([ #1135 ] ,
18
+ [ #1144 ] ). This should prevent segfaults upon exit.
19
+ - Various fixes to the messaging code to be compliant with Jupyter ([ #1138 ] ).
You can’t perform that action at this time.
0 commit comments