Skip to content

Commit

Permalink
Merge pull request #32 from JuliaPhysics/cb
Browse files Browse the repository at this point in the history
Julia 1.x era and version 1.0 release
  • Loading branch information
carstenbauer authored Feb 9, 2020
2 parents fcd4743 + 03a6831 commit 77449d9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- nightly
notifications:
Expand All @@ -18,6 +16,6 @@ matrix:
- julia: nightly
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("PeriodicTable")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; cd(joinpath(dirname(pathof(PeriodicTable)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("PeriodicTable")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(joinpath(dirname(pathof(PeriodicTable)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
12 changes: 12 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name = "PeriodicTable"
uuid = "7b2266bf-644c-5ea3-82d8-af4bbd25a884"
version = "1.0.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[compat]
julia = "1"
Unitful = "1.0"
3 changes: 0 additions & 3 deletions REQUIRE

This file was deleted.

1 change: 0 additions & 1 deletion src/PeriodicTable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ e.g. `elements[:O]`.
module PeriodicTable
export Element, elements

using Compat: replace
import Unitful: u, g, cm, K, J, mol, Quantity

"""
Expand Down
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PeriodicTable, Compat, Unitful
using PeriodicTable, Unitful
import Unitful: u, g, cm, K, J, mol
using Compat.Test
using Compat.Base64
using Test
using Base64

@test eltype(elements) == Element
@test length(elements) == 119 == length(collect(elements))
Expand Down

4 comments on commit 77449d9

@carstenbauer
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.

Error while trying to register: Changing package repo URL not allowed, please submit a pull request with the URL change to the target registry and retry.

@carstenbauer
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/9160

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>" 77449d9a0b767b4f24b0aac0ddc68a6356d61193
git push origin v1.0.0

Please sign in to comment.