Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit c76184c

Browse files
authored
Bump version (#259)
Bump version
2 parents cacb31a + abaa9d2 commit c76184c

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: julia
22
os: osx
3-
osx_image: xcode7.3
3+
osx_image: xcode11
44
julia:
5-
- 0.7
65
- 1.0
6+
- 1.1
77
- nightly
88
notifications:
99
email: false

src/API.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ function install_and_link(name::AbstractString; verbose::Bool=false)
489489
end
490490

491491
# Install dependency and link it
492-
brew(`install --ignore-dependencies $name`; verbose=verbose)
492+
brew(`install $name`; verbose=verbose)
493493
link(name; verbose=verbose)
494494
end
495495

@@ -536,14 +536,14 @@ end
536536
537537
Unlink package `pkg` from the global namespace, uses `--quiet` if `quiet == true`
538538
"""
539-
function unlink(name::StringOrPkg; verbose::Bool=false, quiet::Bool=true) end
539+
function unlink(name::StringOrPkg; verbose::Bool=false) end
540540

541-
function unlink(name::AbstractString; verbose::Bool=false, quiet::Bool=true)
542-
brew(`unlink $name`; verbose=verbose, quiet=quiet)
541+
function unlink(name::AbstractString; verbose::Bool=false)
542+
brew(`unlink $name`; verbose=verbose)
543543
end
544544

545-
function unlink(pkg::BrewPkg; verbose::Bool=false, quiet::Bool=true)
546-
return unlink(fullname(pkg); verbose=verbose, quiet=quiet)
545+
function unlink(pkg::BrewPkg; verbose::Bool=false)
546+
return unlink(fullname(pkg); verbose=verbose)
547547
end
548548

549549

@@ -555,7 +555,7 @@ Remove package `pkg`, use `--force` if `force` == `true`
555555
function rm(pkg::StringOrPkg; verbose::Bool=false, force::Bool=false) end
556556

557557
function rm(pkg::AbstractString; verbose::Bool=false, force::Bool=true)
558-
brew(`rm --ignore-dependencies $pkg`; verbose=verbose, force=force)
558+
brew(`rm $pkg`; verbose=verbose, force=force)
559559
end
560560

561561
function rm(pkg::BrewPkg; verbose::Bool=false, force::Bool=true)

src/private_API.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const auto_tappath = joinpath(brew_prefix,"Library","Taps","staticfloat","homebr
1515
# Where we download brew from
1616
const BREW_URL = "https://github.com/Homebrew/brew"
1717
const BREW_BRANCH = "master"
18-
const BREW_STABLE_SHA = "6a912c369125caca5e1e3929e942bbb946ce6367"
18+
const BREW_STABLE_SHA = "2b83463091513826127c14acae81a7c354dfce69"
1919

2020
"""
2121
`install_brew()`

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ end
7070
@test Homebrew.json(pkgconfig)["name"] == "pkg-config"
7171

7272
# Test that has_bottle knows which OSX version we're running on.
73-
@test Homebrew.has_bottle("ld64") == false
73+
@test Homebrew.has_bottle("staticfloat/juliadeps/rmath-julia") == false
7474

7575
# Test that we can translate properly
7676
@info("Translation should pass:")

0 commit comments

Comments
 (0)