Skip to content

Commit

Permalink
Merge branch 'master' into jl15
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jul 3, 2020
2 parents 198bc1e + 8e398d2 commit 37a79ad
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "InitialValues"
uuid = "22cec73e-a1b8-11e9-2c92-598750a2cf9c"
authors = ["Takafumi Arakaki <aka.tkf@gmail.com>"]
version = "0.2.7-DEV"
version = "0.2.8-DEV"

[compat]
julia = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions README.md
@@ -1,10 +1,10 @@
# InitialValues.jl: Canonical default initial values and identity elements for Julia

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://tkf.github.io/InitialValues.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://tkf.github.io/InitialValues.jl/dev)
[![Build Status](https://travis-ci.com/tkf/InitialValues.jl.svg?branch=master)](https://travis-ci.com/tkf/InitialValues.jl)
[![Codecov](https://codecov.io/gh/tkf/InitialValues.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/tkf/InitialValues.jl)
[![Coveralls](https://coveralls.io/repos/github/tkf/InitialValues.jl/badge.svg?branch=master)](https://coveralls.io/github/tkf/InitialValues.jl?branch=master)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliafolds.github.io/InitialValues.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliafolds.github.io/InitialValues.jl/dev)
[![Build Status](https://travis-ci.com/JuliaFolds/InitialValues.jl.svg?branch=master)](https://travis-ci.com/JuliaFolds/InitialValues.jl)
[![Codecov](https://codecov.io/gh/JuliaFolds/InitialValues.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaFolds/InitialValues.jl)
[![Coveralls](https://coveralls.io/repos/github/JuliaFolds/InitialValues.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaFolds/InitialValues.jl?branch=master)
[![Aqua QA](https://img.shields.io/badge/Aqua.jl-%F0%9F%8C%A2-aqua.svg)](https://github.com/tkf/Aqua.jl)

InitialValues.jl provides a generic singleton initial value `Init(f)`
Expand Down
4 changes: 2 additions & 2 deletions docs/make.jl
Expand Up @@ -6,12 +6,12 @@ makedocs(;
pages=[
"Home" => "index.md",
],
repo="https://github.com/tkf/InitialValues.jl/blob/{commit}{path}#L{line}",
repo="https://github.com/JuliaFolds/InitialValues.jl/blob/{commit}{path}#L{line}",
sitename="InitialValues.jl",
authors="Takafumi Arakaki <aka.tkf@gmail.com>",
strict = true,
)

deploydocs(;
repo="github.com/tkf/InitialValues.jl",
repo="github.com/JuliaFolds/InitialValues.jl",
)
2 changes: 1 addition & 1 deletion src/InitialValues.jl
Expand Up @@ -317,6 +317,6 @@ hasinitialvalue(::Type{AdjoinIdentity{T}}) where {T} = true

# Not used in Transducers.jl ATM but it is probably a reasonable thing
# to support (see, e.g., `Base.BottomRF`):
Base.reduce_empty(rf::AdjoinIdentity, T) = Base.reduce_empty(rf.op, T)
Base.reduce_empty(rf::AdjoinIdentity, ::Type{T}) where {T} = Base.reduce_empty(rf.op, T)

end # module

0 comments on commit 37a79ad

Please sign in to comment.