Skip to content

Commit 60b5c18

Browse files
committed
bump REQUIRE and add NEWS entry
1 parent 8e9e1d3 commit 60b5c18

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

NEWS.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
# v0.4.0
2+
3+
- update to `0.7` and drop `0.6` support
4+
15
# v0.3.0
2-
- Allow `NativeLavels` to specify a fallback label function to be used if
3-
an label that is not known to the encoder is encountered.
6+
7+
- Allow `NativeLavels` to specify a fallback label function to be used if
8+
an label that is not known to the encoder is encountered.
49

510
# v0.2.0
611

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _Utility package for working with classification targets. As such, this package
44

55
| **Package Status** | **Package Evaluator** | **Build Status** |
66
|:------------------:|:---------------------:|:-----------------:|
7-
| [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md) [![Documentation Status](https://img.shields.io/badge/docs-latest-blue.svg?style=flat)](http://mllabelutilsjl.readthedocs.io/en/latest/?badge=latest) | [![MLLabelUtils 0.5](http://pkg.julialang.org/badges/MLLabelUtils_0.5.svg)](http://pkg.julialang.org/?pkg=MLLabelUtils) [![MLLabelUtils 0.6](http://pkg.julialang.org/badges/MLLabelUtils_0.6.svg)](http://pkg.julialang.org/?pkg=MLLabelUtils) | [![Build Status](https://travis-ci.org/JuliaML/MLLabelUtils.jl.svg?branch=master)](https://travis-ci.org/JuliaML/MLLabelUtils.jl) [![Build status](https://ci.appveyor.com/api/projects/status/do24mf2pojqx6tai?svg=true)](https://ci.appveyor.com/project/Evizero/mllabelutils-jl) [![Coverage Status](https://coveralls.io/repos/JuliaML/MLLabelUtils.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaML/MLLabelUtils.jl?branch=master) |
7+
| [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md) [![Documentation Status](https://img.shields.io/badge/docs-latest-blue.svg?style=flat)](http://mllabelutilsjl.readthedocs.io/en/latest/?badge=latest) | [![MLLabelUtils 0.6](http://pkg.julialang.org/badges/MLLabelUtils_0.6.svg)](http://pkg.julialang.org/?pkg=MLLabelUtils) [![MLLabelUtils 0.7](http://pkg.julialang.org/badges/MLLabelUtils_0.7.svg)](http://pkg.julialang.org/?pkg=MLLabelUtils) | [![Build Status](https://travis-ci.org/JuliaML/MLLabelUtils.jl.svg?branch=master)](https://travis-ci.org/JuliaML/MLLabelUtils.jl) [![Build status](https://ci.appveyor.com/api/projects/status/do24mf2pojqx6tai?svg=true)](https://ci.appveyor.com/project/Evizero/mllabelutils-jl) [![Coverage Status](https://coveralls.io/repos/JuliaML/MLLabelUtils.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaML/MLLabelUtils.jl?branch=master) |
88

99
## Introduction
1010

@@ -178,7 +178,7 @@ julia> convertlabel(LabelEnc.TrueFalse, true_targets, LabelEnc.OneVsRest(:yes))
178178
`NativeLabels` maps between data of an arbitary type (e.g. Strings) and
179179
the other label types (Normally `LabelEnc.Indices{Int}` for an integer index).
180180
When using it, you should always save the encoding in a variable,
181-
and pass it as an argument to `convertlabel`; as otherwise the encoding will
181+
and pass it as an argument to `convertlabel`; as otherwise the encoding will
182182
be inferred each time, so will normally encode differently for different inputs.
183183

184184
```julia

REQUIRE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.7
2-
StatsBase
3-
LearnBase
4-
MappedArrays 0.2
1+
julia 0.7-beta2
2+
StatsBase 0.24.0
3+
LearnBase 0.2.0 0.3.0
4+
MappedArrays 0.2.0

src/MLLabelUtils.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
__precompile__()
21
module MLLabelUtils
32

43
using StatsBase

0 commit comments

Comments
 (0)