Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
And bump version to 0.9.2
  • Loading branch information
martinholters committed Dec 16, 2019
2 parents 445b9f1 + 3b5bdee commit 178da77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ACME"
uuid = "ca8b7239-ccd3-5cce-807f-2072f3f0d108"
version = "0.9.1"
version = "0.9.2"

[deps]
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ACME.jl - Analog Circuit Modeling and Emulation for Julia

[![Join the chat at https://gitter.im/HSU-ANT/ACME.jl](https://badges.gitter.im/HSU-ANT/ACME.jl.svg)](https://gitter.im/HSU-ANT/ACME.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
[![Documentation](https://img.shields.io/badge/docs-v0.9.2-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
[![DOI](https://zenodo.org/badge/48224425.svg)](https://zenodo.org/badge/latestdoi/48224425)

ACME is a [Julia](http://julialang.org/) package for the simulation of
Expand Down Expand Up @@ -123,7 +123,7 @@ fail to run altogether.

## Moving on

There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
available for how
to use ACME. Additionally, you can take a look at the examples that can be found
in the `examples` directory below `Pkg.dir("ACME")`.
Expand Down
2 changes: 1 addition & 1 deletion src/kdtree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ mutable struct Alts{T}
end

Alts(p::Vector{T}) where {T} =
Alts([AltEntry(1, Vector{T}(undef, length(p)), zero(T))], typemax(T), 0, 1)
Alts([AltEntry(1, zeros(T, length(p)), zero(T))], typemax(T), 0, 1)

function init!(alts::Alts{T}, best_dist, best_pidx) where {T}
alts.number_valid = 1
Expand Down

2 comments on commit 178da77

@martinholters
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/6782

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.2 -m "<description of version>" 178da771ea3d3d5ad37cddb565f196ee83b4debf
git push origin v0.9.2

Please sign in to comment.