Skip to content

Commit

Permalink
Merge pull request #117 from JuliaTime/cv/timezones-0.6
Browse files Browse the repository at this point in the history
Preparation for TimeZones.jl 0.6 release
  • Loading branch information
omus authored Jan 17, 2018
2 parents e9648b7 + b3d5737 commit d9a0e92
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 25 deletions.
22 changes: 9 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
TimeZones.jl
============

[![TimeZones](http://pkg.julialang.org/badges/TimeZones_0.4.svg)](http://pkg.julialang.org/?pkg=TimeZones)
[![TimeZones](http://pkg.julialang.org/badges/TimeZones_0.5.svg)](http://pkg.julialang.org/?pkg=TimeZones)
[![TimeZones](http://pkg.julialang.org/badges/TimeZones_0.6.svg)](http://pkg.julialang.org/?pkg=TimeZones)
[![TimeZones v0.4](http://pkg.julialang.org/badges/TimeZones_0.4.svg)](http://pkg.julialang.org/?pkg=TimeZones&ver=0.4)
[![TimeZones v0.5](http://pkg.julialang.org/badges/TimeZones_0.5.svg)](http://pkg.julialang.org/?pkg=TimeZones&ver=0.5)
[![TimeZones v0.6](http://pkg.julialang.org/badges/TimeZones_0.6.svg)](http://pkg.julialang.org/?pkg=TimeZones&ver=0.6)
[![TimeZones v0.7](http://pkg.julialang.org/badges/TimeZones_0.7.svg)](http://pkg.julialang.org/?pkg=TimeZones&ver=0.7)
<br/>
[![Linux/OS X Build Status](https://travis-ci.org/JuliaTime/TimeZones.jl.svg?branch=master)](https://travis-ci.org/JuliaTime/TimeZones.jl)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/ru96a9u8h83j9ixu/branch/master?svg=true)](https://ci.appveyor.com/project/omus/timezones-jl)
[![Travis CI](https://travis-ci.org/JuliaTime/TimeZones.jl.svg?branch=master)](https://travis-ci.org/JuliaTime/TimeZones.jl)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/ru96a9u8h83j9ixu/branch/master?svg=true)](https://ci.appveyor.com/project/omus/timezones-jl)
[![codecov](https://codecov.io/gh/JuliaTime/TimeZones.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaTime/TimeZones.jl)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](http://timezonesjl.readthedocs.io/en/stable/)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](http://timezonesjl.readthedocs.io/en/latest/)
<br/>
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](http://timezonesjl.readthedocs.io/en/stable/)
[![Latest Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](http://timezonesjl.readthedocs.io/en/latest/)

[IANA time zone database](http://www.iana.org/time-zones) access for the [Julia](http://julialang.org/) programming language. TimeZones.jl extends the Date/DateTime support for Julia to include a new time zone aware TimeType: ZonedDateTime.

Expand All @@ -23,12 +25,6 @@ TimeZones.jl
* Support for reading the [tzfile](http://man7.org/linux/man-pages/man5/tzfile.5.html) format
* String parsing of ZonedDateTime using [DateFormat](https://docs.julialang.org/en/stable/stdlib/dates/#Base.Dates.DateFormat)

## Documentation

Detailed documentation is available for:
* [Latest Release](http://timezonesjl.readthedocs.org/en/stable/)
* [Development](http://timezonesjl.readthedocs.org/en/latest/)

## Installation

TimeZones.jl can be installed through the Julia package manager:
Expand Down
15 changes: 3 additions & 12 deletions src/deprecated.jl
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
import Base: @deprecate, @deprecate_binding, colon

# BEGIN TimeZones 0.4 deprecations

import TimeZones.TZData: REGIONS, LEGACY_REGIONS

# We forgot to remove these deprecates during the switch to 0.5
@deprecate_binding Olson TZData
@deprecate_binding TZDATA_DIR TZ_SOURCE_DIR

# END TimeZones 0.4 deprecations

# BEGIN TimeZones 0.5 deprecations
# END TimeZones 0.5 deprecations
# BEGIN TimeZones 0.6 deprecations

# JuliaLang/julia#24258
if VERSION < v"0.7.0-DEV.2778"
Expand All @@ -21,3 +10,5 @@ else
# Only remove this deprecation when support for Julia 0.7 is dropped.
@deprecate colon(start::T, stop::T) where {T<:ZonedDateTime} start:Day(1):stop false
end

# END TimeZones 0.6 deprecations

0 comments on commit d9a0e92

Please sign in to comment.