Skip to content

Commit 93e38eb

Browse files
authored
Merge pull request #120 from jobirk/bump-version
Bump version to 0.1.8
2 parents a864a69 + 829e53f commit 93e38eb

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

changelog.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,40 @@
22

33
### [Latest]
44

5+
### [v0.1.8] (2022/08/30)
6+
57
- Fix `set_ylim` in `puma.PlotBase` such that y-limits are correctly modified in cases with a y-offset [#119](https://github.com/umami-hep/puma/pull/119)
68
- Adding example for `puma.Line2DPlot` to the docs [#117](https://github.com/umami-hep/puma/pull/117)
79
- Adding support for ROC plots without ratio panels (was not possible until now) [#114](https://github.com/umami-hep/puma/pull/114)
810
- Lines with `label=None` (which is the default) will not appear in the legend anymore [#113](https://github.com/umami-hep/puma/pull/113)
911
- Adding new function `puma.utils.get_good_linestyles()` for easier linestyle management [#116](https://github.com/umami-hep/puma/pull/116)
1012
- Adding the method `make_linestyle_legend()` which allows to specify an additional legend for linestyles [#113](https://github.com/umami-hep/puma/pull/113)
1113

12-
### [v0.1.7] (10.08.2022)
14+
### [v0.1.7] (2022/08/10)
1315

1416
- Adding new option to place rejection label legend in ROC plots [#109](https://github.com/umami-hep/puma/pull/109)
1517

16-
### [v0.1.6] (26.07.2022)
18+
### [v0.1.6] (2022/07/26)
1719

1820
- Adding support for weighted histograms (`puma.Histogram` now has an optional argument `weights`) [#86](https://github.com/umami-hep/puma/pull/86)
1921
- Fixing bug where code crashed when histograms with discrete values + ratio panel were drawn [#99](https://github.com/umami-hep/puma/pull/99)
2022
- Adding `h5py` to the Docker images [#97](https://github.com/umami-hep/puma/pull/97)
2123
- Adding `transparent` attribute to `PlotObject` class. This allows to specify transparent background when initialising the plot [#96](https://github.com/umami-hep/puma/pull/96)
2224

23-
### [v0.1.5] (05.07.2022)
25+
### [v0.1.5] (2022/07/05)
2426

2527
- Add `linewidth` and `alpha` to legend handles + set `alpha=1` by default (in `puma.Histogram`) [#92](https://github.com/umami-hep/puma/pull/92)
2628
- Decreased default `figsize` for plots with zero or one ratio panels [#90](https://github.com/umami-hep/puma/pull/90)
2729

28-
### [v0.1.4] (30.06.2022)
30+
### [v0.1.4] (2022/06/30)
2931

3032
- Renamed the `puma.FractionScan` and `puma.FractionScanPlot` classes to more general `puma.Line2DPlot` and `pumal.Line2D` [#84](https://github.com/umami-hep/puma/pull/84)
3133
- Splitting `force` argument of `set_log()` method into `force_x` and `force_y` [#83](https://github.com/umami-hep/puma/pull/83)
3234
- Adding `puma.PiePlot` class. Pie chart plots with `puma.HistogramPlot` are no longer possible [#70](https://github.com/umami-hep/puma/pull/70)
3335
- Change default labels of `singlebjets` and `singlecjets` [#82](https://github.com/umami-hep/puma/pull/82)
3436
- Support linestyles for variable vs. efficiency plots [#78](https://github.com/umami-hep/puma/pull/78)
3537

36-
### [v0.1.3] (23.06.2022)
38+
### [v0.1.3] (2022/06/23)
3739

3840
- Adding more flavours to the global config [#73](https://github.com/umami-hep/puma/pull/73)
3941
- `ratio_group` in `puma.Histogram` objects can no longer be set via `flavour` argument [#74](https://github.com/umami-hep/puma/pull/74)
@@ -44,12 +46,12 @@
4446
- Adding `calc_separation()` to `puma.metrics`, which allows to calculate the separation between two distributions [#27](https://github.com/umami-hep/puma/pull/27)
4547
- Adding Zenodo link
4648

47-
### [v0.1.2] (02.06.2022)
49+
### [v0.1.2] (2022/06/02/02)
4850

4951
- Adding automated coverage comment for pull request [#58](https://github.com/umami-hep/puma/pull/58)
5052
- Fix that colour and legend label can be individually modified in case of flavoured histogram [#57](https://github.com/umami-hep/puma/pull/57)
5153

52-
### [v0.1.1] (30.05.2022)
54+
### [v0.1.1] (2022/05/30)
5355

5456
- Adding documentation for updating the version switcher in the docs [#49](https://github.com/umami-hep/puma/pull/49)
5557
- Adding version support in docs [#42](https://github.com/umami-hep/puma/pull/42)[#45](https://github.com/umami-hep/puma/pull/45)
@@ -61,7 +63,7 @@
6163
- Remove warning when adding more than one reference histogram is case is allowed [#32](https://github.com/umami-hep/puma/pull/32)
6264
- Update documentation [#24](https://github.com/umami-hep/puma/pull/24)
6365

64-
### [v0.1.0] (16.05.2022)
66+
### [v0.1.0] (2022/05/16)
6567

6668
- Set default number of ratio panels to 0 [#17](https://github.com/umami-hep/puma/pull/17)
6769
- Adding uncertainties to Roc main plots and improving dummy data generator [#14](https://github.com/umami-hep/puma/pull/14)

puma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44
# pylint: skip-file
55

6-
__version__ = "0.1.7dev"
6+
__version__ = "0.1.8"
77

88
from puma.histogram import Histogram, HistogramPlot
99
from puma.line_plot_2d import Line2D, Line2DPlot

0 commit comments

Comments
 (0)