Skip to content

Commit 00ab34a

Browse files
committed
NEWS links
1 parent dc5adab commit 00ab34a

1 file changed

Lines changed: 46 additions & 19 deletions

File tree

NEWS.md

Lines changed: 46 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,63 +4,63 @@
44

55
6/18/2026
66

7-
* New mesh geometry object (#74).
7+
* New mesh geometry object ([#74]).
88

9-
* Bug fixes for thread safety (#75, #81).
9+
* Bug fixes for thread safety ([#75], [#81]).
1010

11-
* Enable thread-safety tests via configure flag `--enable-openmp` (#79); the library itself is still single-threaded (but many functions of libctlgeom are thread-safe).
11+
* Enable thread-safety tests via configure flag `--enable-openmp` ([#79]); the library itself is still single-threaded (but many functions of libctlgeom are thread-safe).
1212

13-
* CI workflow via Github Actions (#85).
13+
* CI workflow via Github Actions ([#85]).
1414

1515
## libctl 4.6.0
1616

1717
4/16/2026
1818

19-
* Python-callable extension (#71), currently with limited documentation.
19+
* Python-callable extension ([#71]), currently with limited documentation.
2020

21-
* Fix memory leak for prism objects (#73).
21+
* Fix memory leak for prism objects ([#73]).
2222

2323
## libctl 4.5.1
2424

2525
2/1/22
2626

27-
* Ignore duplicate consecutive prism vertices (#60).
27+
* Ignore duplicate consecutive prism vertices ([#60]).
2828

29-
* Memory bug fixes (#58, #59).
29+
* Memory bug fixes ([#58], [#59]).
3030

3131
## libctl 4.5.0
3232

3333
2/19/20
3434

3535
* New `make_slanted_prism` functions to make a prism with
36-
a given sidewall angle (#53).
36+
a given sidewall angle ([#53]).
3737

3838
* Defined `LIBCTL_MAJOR_VERSION` etc. in `ctlgeom.h` header file when
3939
using stand-alone libctlgeom.
4040

41-
* Bugfix in point-in-prism test (#49).
41+
* Bugfix in point-in-prism test ([#49]).
4242

4343
## libctl 4.4.0
4444

4545
11/12/19
4646

4747
* `geom_object_volume` function to get the volume of a 3d object
48-
(accelerates `box_overlap_with_object` for objects completely within a box) (#45).
48+
(accelerates `box_overlap_with_object` for objects completely within a box) ([#45]).
4949

5050
* Bugfix to geometry tree search for empty dimensions.
5151

5252
## libctl 4.3.0
5353

5454
4/17/19
5555

56-
* `ctl_printf_callback` so that callers can capture stdout (#39).
56+
* `ctl_printf_callback` so that callers can capture stdout ([#39]).
5757

5858
## libctl 4.2.0
5959

6060
1/7/19
6161

6262
* Better handling of `center` parameter of prisms, allowing this
63-
to be optionally specified (#35). Deprecates old `geom_fix_object`
63+
to be optionally specified ([#35]). Deprecates old `geom_fix_object`
6464
and `geom_fix_objects0` functions in favor of `geom_fix_object_ptr`
6565
and `geom_fix_object_list`. (In particular, the old `geom_fix_object` routine will not work properly for prisms in
6666
which the center was not computed.)
@@ -69,36 +69,36 @@
6969

7070
11/16/18
7171

72-
* Work around gcc bug (closes #32).
72+
* Work around gcc bug (closes [#32]).
7373

7474
* Allow subclass properties to override defaults (or lack thereof) in parent class.
7575

7676
## libctl 4.1.3
7777

7878
9/7/2018
7979

80-
* Improved prism handling of points on prism faces (#23) and various cosmetic improvements (#22, #24, #25).
80+
* Improved prism handling of points on prism faces ([#23]) and various cosmetic improvements ([#22], [#24], [#25]).
8181

8282
## libctl 4.1.2
8383

8484
7/27/2018
8585

86-
* Bug fix in prism subpixel averaging (#19 and #20), thanks to
86+
* Bug fix in prism subpixel averaging ([#19] and [#20]), thanks to
8787
@DerekK88 for the bug report.
8888

8989
## libctl 4.1.1
9090

9191
6/29/2018
9292

93-
* Bug fix in prism bounding boxes (#17).
93+
* Bug fix in prism bounding boxes ([#17]).
9494

95-
* Build fix for systems with an old `ctlgeom.h` file installed (#16).
95+
* Build fix for systems with an old `ctlgeom.h` file installed ([#16]).
9696

9797
## libctl 4.1
9898

9999
6/7/2018
100100

101-
* New "prism" geometric-object type for polygonal prisms (#13).
101+
* New "prism" geometric-object type for polygonal prisms ([#13]).
102102

103103
## libctl 4.0.1
104104

@@ -444,3 +444,30 @@
444444
11/19/1999.
445445

446446
* Initial public release.
447+
448+
<!--- generated links: -->
449+
[#13]: https://github.com/NanoComp/libctl/issues/13
450+
[#16]: https://github.com/NanoComp/libctl/issues/16
451+
[#17]: https://github.com/NanoComp/libctl/issues/17
452+
[#19]: https://github.com/NanoComp/libctl/issues/19
453+
[#20]: https://github.com/NanoComp/libctl/issues/20
454+
[#22]: https://github.com/NanoComp/libctl/issues/22
455+
[#23]: https://github.com/NanoComp/libctl/issues/23
456+
[#24]: https://github.com/NanoComp/libctl/issues/24
457+
[#25]: https://github.com/NanoComp/libctl/issues/25
458+
[#32]: https://github.com/NanoComp/libctl/issues/32
459+
[#35]: https://github.com/NanoComp/libctl/issues/35
460+
[#39]: https://github.com/NanoComp/libctl/issues/39
461+
[#45]: https://github.com/NanoComp/libctl/issues/45
462+
[#49]: https://github.com/NanoComp/libctl/issues/49
463+
[#53]: https://github.com/NanoComp/libctl/issues/53
464+
[#58]: https://github.com/NanoComp/libctl/issues/58
465+
[#59]: https://github.com/NanoComp/libctl/issues/59
466+
[#60]: https://github.com/NanoComp/libctl/issues/60
467+
[#71]: https://github.com/NanoComp/libctl/issues/71
468+
[#73]: https://github.com/NanoComp/libctl/issues/73
469+
[#74]: https://github.com/NanoComp/libctl/issues/74
470+
[#75]: https://github.com/NanoComp/libctl/issues/75
471+
[#79]: https://github.com/NanoComp/libctl/issues/79
472+
[#81]: https://github.com/NanoComp/libctl/issues/81
473+
[#85]: https://github.com/NanoComp/libctl/issues/85

0 commit comments

Comments
 (0)