Releases: xKDR/TSFrames.jl
Releases · xKDR/TSFrames.jl
v0.2.2
TSFrames v0.2.2
- Support Julia versions v1.8, v1.9, and Julia v1.10.
- Fix subset functions for Julia v1.6.
- Improve documentation, add cross-referencing.
- Add JuliaCon videos to README.
Merged pull requests:
- CompatHelper: bump compat for StatsBase to 0.34, (keep existing compat) (#163) (@github-actions[bot])
- update for JuliaCon 2023 talk (#166) (@chiraganand)
- added JuliaCon Video link to README (#169) (@ShrutiRDalvi)
- refs #175, include support for Julia v1.7 and v1.10 (#176) (@chiraganand)
- Updating subset.jl to make it compatible with the Julia version 1.6 (#177) (@siddjain444)
- refs #175, include support for Julia v1.8 (#178) (@san-ath)
- Updating the Project.toml reflecting the compatibility with the Julia… (#179) (@siddjain444)
- improve documentation, add cross-ref (#195) (@chiraganand)
- use Dates.Period instead of the entire Union (#196) (@chiraganand)
- refs #181, fixing documentation issues (#198) (@san-ath)
- release version 0.2.2 and author update (#202) (@chiraganand)
Closed issues:
- isregular() method for checking regularity of TS object (#78)
- Constructing empty
TSFrame
s with specific column names and types. (#132) - Release v0.2.1 (#160)
- TSFrames not working in Julia 1.6 (#162)
- Add video button in the readme. (#165)
- Update StatsBase.jl version to v0.34 (#170)
- Support Julia versions v1.7, v1.8, v1.9, v1.10 (#175)
- endpoints.jl: Use <: Dates.Period instead of listing all the sub-types (#188)
- Don't use Union{String, Symbol} in getindex (#189)
v0.2.1
What's Changed
- fix rollapply API in docs, closes #139 by @chiraganand in #140
- More
rename!
methods. by @codetalker7 in #143 - Support pre-sorted data in the
TSFrame
constructor by @asinghvi17 in #141 - Push preview builds of docs on PRs by @asinghvi17 in #145
- Minor fix in documentation for
rename!
. by @codetalker7 in #148 - Add isregular by @harsharora21 in #130
- Dropping Julia requirement to v1.6 (LTS) by @doganmehmet in #156
- Add module distinguisher for
subset()
call by @chiraganand in #157 - Bumping version from
0.2.0
to0.2.1
. by @codetalker7 in #158 - Add an option to not copy columns when constructing a TSFrame by @asinghvi17 in #142
New Contributors
- @asinghvi17 made their first contribution in #141
- @doganmehmet made their first contribution in #156
Full Changelog: v0.2.0...v0.2.1
v0.2.0
Changes in this release:
- Added Tables.rowcount method for TSFrames.
- A new API for join, including support for joining multiple TSFrames.
- New constructors for TSFrame which allow creation of empty TSFrames with specified column names and types.
- New convenience methods for frequency conversion (eg. to_period, to_yearly etc.).
- New API for rollapply; added support for rolling regressions and columnwise function application using the bycolumn keyword argument.
- Fixed broadcasting of multiplication.
- Added Base.iterate method for TSFrame and new equality functions for TSFrames.
v0.1.0
The first release of TSFrames.