Skip to content

Commit

Permalink
Merge pull request #14 from daschw/registrator
Browse files Browse the repository at this point in the history
Add Project.toml
  • Loading branch information
SimonDanisch authored Jun 27, 2019
2 parents e42c750 + 0bac5fd commit 5c3d77f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
Manifest.toml
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ os:
- linux
# - osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
notifications:
email: false
Expand Down
17 changes: 17 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = "Showoff"
uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f"
author = ["Daniel C. Jones (@dcjones)"]
version = "0.3.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

[compat]
julia = "≥ 1"

[extras]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Dates", "Test"]
3 changes: 1 addition & 2 deletions src/Showoff.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ __precompile__()

module Showoff

using Compat
using Compat.Dates
using Dates

export showoff

Expand Down
5 changes: 2 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Showoff
using Compat
using Compat.Test
using Compat.Dates
using Test
using Dates

@testset "Internals" begin
@test Showoff.@grisu_ccall(1, 2, 3) === nothing
Expand Down

3 comments on commit 5c3d77f

@SimonDanisch
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 register()

@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/1612

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 v0.3.0 -m "<description of version>" 5c3d77f565bf272ced4827e01223884d3c59dacf
git push origin v0.3.0

@daschw
Copy link
Contributor

@daschw daschw commented on 5c3d77f Jun 28, 2019

Choose a reason for hiding this comment

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

Thanks Simon!

Please sign in to comment.