Merge pull request #986 from daschw/ds-release

prepare v0.12.1 release
This commit is contained in:
Daniel Schwabeneder 2017-07-26 15:09:33 +02:00 committed by GitHub
commit 23a22102c5
3 changed files with 17 additions and 3 deletions

16
NEWS.md
View File

@ -9,8 +9,22 @@
- `backports` branch is for Julia 0.4 - `backports` branch is for Julia 0.4
--- ---
## 0.12.1 (current master/dev)
## 0.12 (current master/dev) - fix deprecation warnings
- switch from FixedSizeArrays to StaticArrays.FixedSizeArrays
- drop FactCheck in tests
- remove julia 0.5 compliant uses of transpose operator
- fix GR heatmap bugs
- fix GR guide padding
- improve legend markers in GR
- add surface alpha for Plotly(JS)
- add fillrange to Plotly(JS)
- allow usage of Matplotlib 1.5 with PyPlot
- fix GLVisualize for julia 0.6
- conform to changes in InspectDR
#### 0.12.0
- 0.6 only - 0.6 only

View File

@ -1,4 +1,4 @@
__precompile__(true) __precompile__(false)
module Plots module Plots

View File

@ -23,7 +23,7 @@ default(size=(500,300))
# TODO: use julia's Condition type and the wait() and notify() functions to initialize a Window, then wait() on a condition that # TODO: use julia's Condition type and the wait() and notify() functions to initialize a Window, then wait() on a condition that
# is referenced in a button press callback (the button clicked callback will call notify() on that condition) # is referenced in a button press callback (the button clicked callback will call notify() on that condition)
const _current_plots_version = v"0.12.0" const _current_plots_version = v"0.12.1"
function image_comparison_tests(pkg::Symbol, idx::Int; debug = false, popup = isinteractive(), sigma = [1,1], eps = 1e-2) function image_comparison_tests(pkg::Symbol, idx::Int; debug = false, popup = isinteractive(), sigma = [1,1], eps = 1e-2)