Skip to content

Commit

Permalink
compatibility with v0.7 releasecandidate2
Browse files Browse the repository at this point in the history
  • Loading branch information
cormullion committed Aug 4, 2018
1 parent ce41060 commit 3c9c448
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 19 deletions.
21 changes: 11 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
# Changelog


## [in development] - 2018-08 ...
## [v0.11.2] - 2018-08-04

### Added

- `polysample()`
- `Dates` prefix where required
- `midpoint()`` and `between()`` work on BoundingBoxes
- `midpoint()` and `between()` work on BoundingBoxes

### Changed

- `srand` to `Random.seed!`
- replaced Appveyor script from https://github.com/JuliaCI/Appveyor.jl
- adjusted with imports from Cairo in test scripts
- `end` in `mod1()`
- Point is `broadcastable`
- Point is `broadcastable`
- `preview()`` now returns name of new file, unless in Juno/Jupyter

### Removed

- fill removed, use fillpath
- stroke removed, use strokepath
- polybbox removed, use boundingbox
- bboxesintersect removed, use boundingboxesintersect
- norm removed, use distance
- dot removed, use dotproduct
- axes removed, use rulers
- fill() removed, use fillpath
- stroke() removed, use strokepath
- polybbox() removed, use boundingbox
- bboxesintersect() removed, use boundingboxesintersect
- norm() removed, use distance
- dot() removed, use dotproduct
- axes() removed, use rulers

### Deprecated


## [v0.11.1] - 2018-07-29

### Added
Expand Down
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
| [![][docs-stable-img]][docs-stable-url] | [![][pkg-0.5-img]][pkg-0.5-url] | [![Build Status][travis-img]][travis-url] | [![][codecov-img]][codecov-url] |
| [![][docs-latest-img]][docs-latest-url] | [![][pkg-0.6-img]][pkg-0.6-url] | [![Build Status][appvey-img]][appvey-url] | |

## Status as of 2018-06-16
## Status as of 2018-08-04

Mostly functional on Julia v0.7. Hopefully the deprecation warnings should fade away.

### Deprecations and warnings

* `norm(pt1::Point, pt2::Point)` is now `distance(pt1::Point, pt2::Point)`
* `dot(pt1::Point, pt2::Point)` is now `dotproduct(pt1::Point, pt2::Point)`
* `axes()` is now `rulers()`
Compatible with Julia v0.7 release candidate 2. If you can install Cairo successfully, you should be OK.

[![][pkg-0.7-img]][pkg-0.7-url]

Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ makedocs(
deploydocs(
repo = "github.com/JuliaGraphics/Luxor.jl.git",
target = "build",
julia = "0.7",
julia = "v0.7",
osname = "linux",
deps = nothing,
make = nothing
Expand Down

0 comments on commit 3c9c448

Please sign in to comment.