Skip to content

Commit

Permalink
Release version 1.0.0 (#16)
Browse files Browse the repository at this point in the history
* Remove ZeroTo, switch to Project, and release 1.0.0

* Update the CI
  • Loading branch information
timholy authored Jan 18, 2020
1 parent e55608a commit f9af4b6
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 93 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ os:
julia:
- 0.7
- 1.0
- 1
- nightly
notifications:
email: false
Expand Down
13 changes: 13 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name = "CustomUnitRanges"
uuid = "dc8bdbbb-1ca9-579f-8c36-e416f6a65cce"
author = ["Tim Holy <tim.holy@gmail.com>"]
version = "1.0.0"

[compat]
julia = "0.7, 1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
1 change: 0 additions & 1 deletion REQUIRE

This file was deleted.

2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
environment:
matrix:
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1
- julia_version: nightly

matrix:
Expand Down
54 changes: 0 additions & 54 deletions src/ZeroTo.jl

This file was deleted.

1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ using Test

include("zerorange.jl")
include("urange.jl")
include("zeroto.jl") # deprecated

@test intersect(ZeroRange(4), URange(-1,2)) === 0:2
@test ZeroRange(6)[URange(2,4)] === 1:3
Expand Down
37 changes: 0 additions & 37 deletions test/zeroto.jl

This file was deleted.

2 comments on commit f9af4b6

@timholy
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/8127

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" f9af4b60ebb914225d9d7bbaf8f35253c714ebda
git push origin v1.0.0

Please sign in to comment.