Skip to content

Commit

Permalink
Update NEWS and README, prepare for releasing (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin authored Dec 7, 2017
1 parent 5fa8064 commit e7c79bd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
29 changes: 22 additions & 7 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
### 0.11.0

* Dropping 0.5 support. (issue [#327])

* `TimeArray` constructor, `merge`, `update`, `vcat` and `rename`
will throw typed exceptions. (issue 322)
will throw typed exceptions. (issue [#322])

* Signature of `moving` becomes

```julia
moving(f, ta::TimeArray, window; padding=false)
```

, in order to support do-syntax. The original one is deprecated. (issue #TBD)
, in order to support do-syntax. The original one is deprecated. (issue [#334])

* Signature of `upto` becomes

```julia
moving(f, ta::TimeArray, window; padding=false)
```

, in order to support do-syntax. The original one is deprecated. (issue #TBD)
, in order to support do-syntax. The original one is deprecated. (issue [#337])

* `map` supports callable object. (issue #TBD)
* `map` supports callable object. (issue [#339])

```julia
struct T end
Expand All @@ -36,8 +38,10 @@
[ta1 ta2]
```

can perform faster than ```merge(ta1, ta2)``` in this case. (issue #TBD)
* Support more reduction functions of Base. (issue #TBD)
can perform faster than ```merge(ta1, ta2)``` in this case.
(issue [#341])

* Support more reduction functions of Base. (issue [#338])
* `sum`
* `mean`
* `std`
Expand All @@ -49,7 +53,18 @@
sum(ta, 2)
```

* Support cumulative prod `cumprod`. (issue #TBD)
* Support cumulative prod `cumprod`. (issue [#338])

* Support `eachindex(ta)`. (issue [#336])

[#322]: https://github.com/JuliaStats/TimeSeries.jl/pull/322
[#327]: https://github.com/JuliaStats/TimeSeries.jl/pull/327
[#334]: https://github.com/JuliaStats/TimeSeries.jl/pull/334
[#336]: https://github.com/JuliaStats/TimeSeries.jl/pull/336
[#337]: https://github.com/JuliaStats/TimeSeries.jl/pull/337
[#338]: https://github.com/JuliaStats/TimeSeries.jl/pull/338
[#339]: https://github.com/JuliaStats/TimeSeries.jl/pull/339
[#341]: https://github.com/JuliaStats/TimeSeries.jl/pull/341

### 0.10.0

Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ TimeSeries.jl
============
[![Build Status](https://travis-ci.org/JuliaStats/TimeSeries.jl.svg?branch=master)](https://travis-ci.org/JuliaStats/TimeSeries.jl)
[![Coverage Status](https://coveralls.io/repos/JuliaStats/TimeSeries.jl/badge.svg?branch=master)](https://coveralls.io/r/JuliaStats/TimeSeries.jl?branch=master)
[![TimeSeries](http://pkg.julialang.org/badges/TimeSeries_0.4.svg)](http://pkg.julialang.org/?pkg=TimeSeries&ver=0.4)
[![TimeSeries](http://pkg.julialang.org/badges/TimeSeries_0.5.svg)](http://pkg.julialang.org/?pkg=TimeSeries&ver=0.5)
[![TimeSeries](http://pkg.julialang.org/badges/TimeSeries_0.6.svg)](http://pkg.julialang.org/?pkg=TimeSeries&ver=0.6)
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://JuliaStats.github.io/TimeSeries.jl/latest)

TimeSeries aims to provide a lightweight framework for working with time series data in Julia. Documentation is provided
[here](http://timeseriesjl.readthedocs.org/en/latest/).
TimeSeries aims to provide a lightweight framework for working with time series data in Julia.
Documentation is provided [here](http://timeseriesjl.readthedocs.org/en/latest/).

0 comments on commit e7c79bd

Please sign in to comment.